mongodb中嵌入评论分页
如果我有一个用于存储嵌入评论的文章的集合,当从数据库检索数据时,我将得到一个带有完整评论列表的文章对象,支持有很多评论,所以这可能是加载效率的问题,如何我可以通过分页评论来处理这个问题吗?我必须使用单独的评论集合吗?或者还有什么?提前致谢。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 $slice 运算符。
要通过分页检索评论,您需要如下代码:
此操作将返回仅包含切片评论的文章。 )
You looking for the $slice operator.
To retrieve comments by paging you need code like this:
This operation will return articles with only sliced comments. )
最大的问题是:
您的用户对评论更感兴趣还是对查看的上下文更感兴趣?
高度:
将评论放在单独的文档中,然后首先加载它们!
然后通过 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)