一个简化的情况是: MongoDb集合中有1000多个文档,某些用户(例如,免费帐户)只能对前100个文档进行操作。
该操作包括:查找,更新和删除。
如何将操作限制在集合中的前100个文档中?我想到以下算法:
1) find the first 100 documents
2) do find, update, delete, paginate only for this sub set of documents.
如何实现?如有可能,请提供一些示例代码。
答案 0 :(得分:0)