gpt4 book ai didi

python - 创建索引 - MongoDB

转载 作者:可可西里 更新时间:2023-11-01 09:17:57 24 4
gpt4 key购买 nike

我的“表格”看起来像这样:

{'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)

关于python - 创建索引 - MongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3325505/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com