gpt4 book ai didi

python - pymongo 中的 collection.getIndexes() shell 命令的等价物是什么?

转载 作者:IT老高 更新时间:2023-10-28 13:07:37 24 4
gpt4 key购买 nike

我似乎找不到作为 pymongo 的 Collection 对象的一部分实现的 getIndexes() 命令 - 这是故意的吗?它是在类层次结构的其他地方实现的吗?

如果不是,那么获得相同效果的 pymongo 规范方法是什么?

最佳答案

您可能正在寻找的是 index_information()在收藏级别。来自文档:

Get information on this collection’s indexes.

Returns a dictionary where the keys are index names (as returned by create_index()) and the values are dictionaries containing information about each index.

>>> db.test.index_information()
{u'_id_': {u'key': [(u'_id', 1)]},
u'x_1': {u'unique': True, u'key': [(u'x', 1)]}}

关于python - pymongo 中的 collection.getIndexes() shell 命令的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26724393/

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