我的"桌子"看起来像这样:
{'name':'Rupert', 'type':'Unicorn', 'actions':[ {'time':0, 'position':[0,0], 'action':'run'}, {'time':50, 'position':[50,0], 'action':'stoprun'}, {'time':50, 'position':[50,0], 'action':'jump'}, {'time':55, 'position':[50,0], 'action':'laugh'}, ... ]}
有什么方法可以索引动作列表中的项目吗?或者我是否必须将它们分成更多的表格?
对于我来说,将动作保持在当前表行中会更方便.
pymongo的例子:
import pymongo mongo = pymongo.Connection('localhost') collection = mongo['database']['hosts'] collection.ensure_index('host_name', unique=True)
感谢#mongodb的skot !!
一个解决方案是:
[...].ensureIndex({"actions.time":1})
用于在操作列表中的时间字段上创建索引.