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.
大家好, 我需要一个在 MONGODB 中使用分页和排序的 map reduce 的工作示例代码。 请评论链接。 因为我只是对找到排序和分页示例代码感到沮丧。
请帮我。
MapReduce 是错误的工具。您可以通过将普通的 find-query 与sort、skip和limit链接来实现分页。
date要从集合中查询文档 101-120 ,请使用以下命令:
date
db.collection.find().sort(date: -1).skip(100).limit(20);