mongodb中嵌入评论分页

发布于 2024-12-05 15:49:02 字数 127 浏览 0 评论 0原文

如果我有一个用于存储嵌入评论的文章的集合,当从数据库检索数据时,我将得到一个带有完整评论列表的文章对象,支持有很多评论,所以这可能是加载效率的问题,如何我可以通过分页评论来处理这个问题吗?我必须使用单独的评论集合吗?或者还有什么?提前致谢。

if I got a collection for storing Articles with it's Comments embedded, when retriving data from db, I will get a Article object with a completely Comment list, support there are a lot of comments, so this could be a problem of loading efficience, how can I handler this by paging Comments? do I have to use a seperate collection for Comments? or what else? thanx in advance.

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

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

发布评论

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

评论(2

一口甜 2024-12-12 15:49:02

您正在寻找 $slice 运算符。

要通过分页检索评论,您需要如下代码:

db.articles.find({}, {comments:{$slice: [20, 10]}}) // skip 20, limit 10 

此操作将返回仅包含切片评论的文章。 )

You looking for the $slice operator.

To retrieve comments by paging you need code like this:

db.articles.find({}, {comments:{$slice: [20, 10]}}) // skip 20, limit 10 

This operation will return articles with only sliced comments. )

懒猫 2024-12-12 15:49:02

最大的问题是:

您的用户对评论更感兴趣还是对查看的上下文更感兴趣?

高度:
将评论放在单独的文档中,然后首先加载它们!
然后通过 AJAX 发送“辅助”内容。

适度:
使用安德鲁的解决方案。 (并且不要忘记您也可以省略查询中的字段)

很难:
将评论放在单独的文档中,然后最后加载它们(通过 AJAX)。

(此外,使用 AJAX 还可以为您提供通过简单向下滚动来扩展加载的评论的好功能)

The biggest question is:

Are your users more interested in comments or in context viewed?

Highly:
Put comments in separate documents, and load them first!
Then send "secondary" content via AJAX.

Moderately:
Use Andrew's solution. (And do not forget that you can also omit fields in queries)

Hardly:
Put comments in separate documents, and load them last (via AJAX).

(Also using AJAX can give you nice feature of expanding loaded comments via simple scrolling down)

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