zoukankan      html  css  js  c++  java
  • Pymongo index索引相关操作总结

    简单总结一下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),常用可选参数如下:

    参数名 类型 描述
    background Boolean 建索引过程会阻塞其它数据库操作,background可指定以后台方式创建索引,即增加 “background” 可选参数。 “background” 默认值为False。
    unique Boolean 建立的索引是否唯一。指定为True来创建唯一索引。默认值为False. 默认情况下,MongoDB在创建集合时会生成唯一索引字段_id。
    name string 索引的名称。如果未指定,MongoDB的通过连接索引的字段名和排序顺序生成一个索引名称。例如create_index([(‘x’,1)]在不指定name时会生成默认的索引名称 ‘x_1’
    expireAfterSeconds integer 指定一个以秒为单位的数值,完成 TTL设定,设定集合的生存时间。需要在值为日期或包含日期值的数组的字段的创建。
  • 相关阅读:
    gitlab 建仓的流程
    gitlab安装
    以普通用户登录 su root 用vncviewer:xxxxx 会报错!!exit 回到最初环境变的用户 问题解决!!!!
    linux下绘图工具dia
    rds材资收集
    export 解决环境变量的问题!!!!
    查看nginx版本号
    grep -C n "匹配字符串" 匹配字符串上下N行
    查看TOMCAT的版本
    导出数据库的结构不含数据
  • 原文地址:https://www.cnblogs.com/lestatzhang/p/10611345.html
Copyright © 2011-2022 走看看