如何组织我的文档?
我对 mongodb 还很陌生(仅在一个小项目中使用它),我想了解您关于如何组织我的文档的提示。我的大脑还没有被 nosql 格式化。
我有一个存储所有类型信息的集合,我想为其添加标签。每个文档将有 1-5 个标签。我希望能够按标签(除其他外)进行搜索,显示 1 个或多个给定标签的所有文档,按标签了解文档的数量。
您认为解决这个简单问题的最佳方法是什么?我应该给它他自己的收藏吗?我应该嵌入它吗?
你会怎么做?
谢谢
I'm pretty new to mongodb (only work with it for one small project) and I wanted to have your tips on how to organize my documents. My brain is not (yet) nosql formatted.
I have a collection storing all kind of informations and I want to add tags to it. There will be 1-5 tags by document. I want to be able to search by tags (among other things), display all the documents for 1 or more given tags, know the number of documents by tag.
What do you think is the best way to approach this simple problem ? should I give it his own collection ? should I embed it ?
How would you do ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将标签嵌入到文档中。您可以搜索嵌入数组并为它们建立索引。
Embed the tags in the document. You can search on embedded arrays and you can index them.