gpt4 book ai didi

java - MongoCursor 没有 count() 方法?

转载 作者:行者123 更新时间:2023-11-29 06:31:00 31 4
gpt4 key购买 nike

所以我的代码是:

FindIterable<Document> findIterable = collection.find().skip(20).limit(10);
MongoCursor<Document> cursor = findIterable.iterator();
while (cursor.hasNext()) {
Document doc = cursor.next();
// My stuff with documents here
}
cursor.close(); // in finally block

现在我想知道在skiplimit之前文档的总数

有一个answer for exact same question ,但我有 mongo-java-driver v3.1.0 并且我使用的 API 不同。FindIterable 中都没有方法 count()size()MongoCursor类。谢谢!

更新

似乎唯一的解决方法是再次调用 mongodb:collection.count 如前所述 @Philipp

最佳答案

count现在可以在 MongoCollection 中找到方法:

int count = collection.count();

返回集合中文档的总数。

int count = collection.count(criteria);

返回集合中符合给定条件的文档数。

关于java - MongoCursor 没有 count() 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33874069/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com