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.
我在 Linux 下运行 MongoDB v.2-4-4-pre-。我使用带有“skip”参数的简单 find() 操作从我的数据库中选择一些元素。
有没有办法找出我的查询跳过了多少对象?
它会跳过您作为参数提供给skip(). 来自这里的示例
skip()
db.article.aggregate( { $skip : 5 } );
此操作跳过管道传递给它的前 5 个文档。$skip 对它沿管道传递的文档的内容没有影响。
编辑#1
根据您的评论,我相信您需要执行count 命令。