如何获取比 Mongoid 中的特定文档更新的文档?
我正在尝试在 mongoid 中做这样的事情:
User.any_in(:uid => friends).and(:id.gt => "4d391ab448fa7d389b000000").entries
但看起来 Mongoid ID 不能以这种方式进行比较。如何在不使用 Mongoid::Timestamps 的情况下实现上述目标?
谢谢!
I am trying to do something like this in mongoid:
User.any_in(:uid => friends).and(:id.gt => "4d391ab448fa7d389b000000").entries
But looks like Mongoid ID cannot be compared this way. How do I achieve the above without resorting to using Mongoid::Timestamps ?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么你不想使用时间戳?
以这种方式使用 ids 不会给你带来你想要的行为。
文档的 id 不仅取决于插入顺序,还取决于生成 id 的机器。
时间戳绝对是您最好的选择。
Why would you not want to use timestamps?
Using ids in this way will not give you the behavior you want.
The id of the document will depend not only on the order of insertion but also on what machine the id was generated on.
Timestamps are definitely your best bet here.
我想您可以使用服务器端 javascript 来处理这些值,但如果您关心这些属性,那么效率会降低,安全性也会降低。
I guess you can use server side javascript to process the values but that would be less efficient and less secure if you care for these properties.