我需要使用pymongo
从python脚本中create a sparse index。
似乎collection.create_index和collection.ensure_index都不支持sparse
选项。
根据mongodb issue tracker perl和php驱动程序,我们已经支持sparse
ensure_index
选项;看起来没有计划让它在python驱动程序中可用..
是否有其他方法可以使用pymongo
创建稀疏索引?
答案 0 :(得分:3)
我必须同意这里的文档不是很好,但这对我有用:
my_collection.ensure_index("mike", sparse = True)