使用mongodb存储日内股票数据
我想存储日湾日交易股票数据。这些数据是复合的(即价格-成交量)并且需要按顺序维护。如何组织 mongodb 数据以便频繁更新数据并按股权名称、日期读取索引? 提前致谢
I want to store day bay day trading stock data. These data are composite ( ie Price-Volume ) and needs to be mantained in order. How to organize the mongodb data in order to update the data very frequently and reading indexing by equity name,date ?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用类似这样的架构:
stocks
然后在要排序和过滤的字段上添加索引,例如
_id
键字段默认情况下已建立索引,因此像这样的更新会非常快:You could use a schema something like this:
stocks
Then add indexes over the fields you'll be sorting and filtering by, e.g.
The
_id
key field is indexed by default, so updates like this will be very fast: