Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用下面的查询使用 R 中的 RMongo 包访问 MongoDB 中的集合中的所有记录。 dbGetQuery(mongo, "", "{}")每天都添加到它,因此我事先不知道集合中有多少文档。所以我不能在上面的查询中指定一个限制。但由于默认值为 1000,因此它仅从集合中检索 1000 个文档。如何在不指定限制的情况下检索集合中的所有文档?
有同样的问题,答案非常简单 - 只需将限制设置为 Inf:
result <- dbGetQuery(mongo, collection, query, skip=0, limit=Inf)