如何获取比 Mongoid 中的特定文档更新的文档?

发布于 2024-10-13 07:31:47 字数 229 浏览 1 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一抹淡然 2024-10-20 07:31:47

为什么你不想使用时间戳?

以这种方式使用 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.

等待我真够勒 2024-10-20 07:31:47

我想您可以使用服务器端 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文