记录的相对陈旧度

发布于 2024-12-19 11:02:06 字数 227 浏览 1 评论 0原文

我的系统中有投票,但我想根据投票计算和项目的新鲜度进行排序。

我知道在 SQL 中,使用 GETDATE()DATEDIFF() 和一些数学魔法来完成这样的事情应该很容易。

我该如何在 Mongo 中做到这一点?需要使用map-reduce吗?我记得听说过 map-reduce 会阻塞 - 所以不建议将其用于高流量的网站页面查询?

谢谢

I have votes in my system, but I want to sort by some calculation of votes and freshness of the item.

I know that in SQL, it should be quite easy to do something like this - with GETDATE(), DATEDIFF() and a bit of math magic.

How would I go about doing this in Mongo? Will it require to use map-reduce? I remember hearing that map-reduce is blocking - so it's not recommended for high-traffic website page queries?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

可可 2024-12-26 11:02:06

在 MongoDB 中,您可以对文档中任何字段的值进行排序,但不能对计算值进行排序。

但是,在这种情况下,您不能只按日期(降序)而不是新鲜度排序吗?这不会给出相同的排序顺序吗?

In MongoDB you can sort on the value of any of the fields in a document, but you can't sort on a calculated value.

However, in this case, couldn't you just sort on the date (descending) instead of the freshness? Wouldn't that give the same sort order?

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