1

我需要使用pymongo.

似乎collection.create_indexcollection.ensure_index都不支持sparse选项。

根据mongodb 问题跟踪器perl 和 php 驱动程序确实支持命令sparse选项ensure_index;看起来没有计划在 python 驱动程序中提供它..

有没有其他方法可以使用创建稀疏索引pymongo

4

1 回答 1

3

我不得不同意这里的文档不是很好,但这对我有用:

my_collection.ensure_index("mike", sparse = True)

于 2013-06-11T10:43:58.247 回答