使用 Mongo DB 决定是创建新集合还是将数据放入现有集合中
我有来自两个来源的数据:Facebook 和 Twitter。对于每个源,我有多个句柄(百事可乐、可乐、雪碧),我想确定组织数据库的最佳方式。
更好的做法是
……制作两个集合,一个用于 Twitter,一个用于 Facebook,并且在两个集合中拥有所有三个句柄?
b.制作一个集合并将所有信息放入该集合中?
感谢您的帮助。 MongoDB 太棒了。
I have data coming in from two sources, facebook and twitter. For each source I have multiple handles (pepsi, coke, sprite) and I want to determine the best way to organize my database.
Is it better practice to...
a. make two collections, one for twitter and one for facebook and have all all three handles in both collections?
b. make one collection and put all of that information in that single collection?
Thanks for your help. Mongodb is awesome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上取决于许多因素,但一般来说......
如果数据有些相似和/或应该一起查询(聚合),那么单个集合可能是最好的选择。
如果来自 Twitter 和 Facebook 的数据应该以完全不同的方式处理,那么分离的集合也许是更合适的解决方案。
Depends on many factors really, but generally speaking...
If the data is somewhat similar and/or should be queried (aggregated) together then single collection is probably the best choice.
If the data from twitter and fb should be processed in totally different ways then perhaps separated collections is a more appropriate solution.