查找 mongomapper 中某个项目之前的所有项目
我想在 mongomapper 中查找某个项目之前的所有项目。
例如,如果我保存了 5 个用户类,并且传入了用户 3 的 ID,那么我希望取回前两项。
有什么想法可以有效地做到这一点吗?
I want to find all items before a certain item in mongomapper.
For example if I have five User classes saved and I pass in the ID of user 3 then I expect to get back the first two items.
Any ideas how to do this efficiently?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mongo 中的 ObjectID 键由几部分组成,其中之一是时间戳。您也许可以使用它作为查询的条件。请参阅此处了解更多详细信息,http://mongotips.com/b/a-few- objectid-技巧/
The ObjectID key in Mongo is comprised of a few things, one of them being a timestamp. You can probably use that as a condition on which to query. Look here for more details, http://mongotips.com/b/a-few-objectid-tricks/