简单总结一下pymongo中与index操作相关一些函数, 常用的有:

* create_index
* drop_index
* index_information
其中最主要的是create_index, 可以用它来为mongo的collection建立索引。
以下操作一些简单的例子,代码如下:
>>>import pymongo as pm >>>client = pm.MongoClient(
'mongodb://user:password@127.0.0.1:27017, ssl=True, ssl_ca_certs='/tmp/
mongo_local.pem') >>>db = client['my_db'] >>>collection = db['my_collection']
#list all index related methods >>>print([x for x in dir(collection]) if 'index'
in x) #['Collection__create_index',
'create_index','create_indexes','drop_index','drop_indexes',\ #
'ensure_index','index_information','list_indexes','reindex'] #create a index on
attr. x >>>collection.create_index([('x',1)], unique = True, background = True)
#get more help using help method >>>help(collection.create_index) #show index
information collection.index_infomation() #{ # '_id_': {'key' ['_id',1)],
'ns':'my_db.my_collection', 'v':1}, # 'x_1' : { 'unique':True, 'key':
[('x',1)], 'ns':'my_db.my_collection', 'v':1} #} #drop an index by index
specifier >>>collection.drop_index([('x',1)]) #drop an index by index name >>>
#collection.drop_index('x_1') #WARN: if an index is create with option name
specified, it can only be dropped by name >>>collection.create_index([('x',1)],
name= 'idx_x') >>>collection.drop_index('idx_x')
create_index函数也可以使用多个字段创建索引,例如
>>>collection.create_index([('x',1),('y',1)])
语法中(‘x’,1), x 值为要创建的索引字段名,1
为指定按升序创建索引,也可以用pymongo.ASCENDING代替。如果你想按降序来创建索引,则指定为 -1 或 pymongo.DESCENDING.

在使用create_index()创建索引时,也可指定特定的参数(options),常用可选参数如下:

参数名类型描述
backgroundBoolean建索引过程会阻塞其它数据库操作,background可指定以后台方式创建索引,即增加 “background” 可选参数。
“background” 默认值为False。
uniqueBoolean建立的索引是否唯一。指定为True来创建唯一索引。默认值为False.
默认情况下,MongoDB在创建集合时会生成唯一索引字段_id。
namestring
索引的名称。如果未指定,MongoDB的通过连接索引的字段名和排序顺序生成一个索引名称。例如create_index([(‘x’,1)]在不指定name时会生成默认的索引名称
‘x_1’
expireAfterSecondsinteger指定一个以秒为单位的数值,完成
TTL设定,设定集合的生存时间。需要在值为日期或包含日期值的数组的字段的创建。

技术
今日推荐
PPT
阅读数 121
下载桌面版
GitHub
百度网盘(提取码:draw)
Gitee
云服务器优惠
阿里云优惠券
腾讯云优惠券
华为云优惠券
站点信息
问题反馈
邮箱:ixiaoyang8@qq.com
QQ群:766591547
关注微信