MongoDB索引管理-索引的建立、查看、刪除__MongoDB

來源:互聯網
上載者:User

http://itbilu.com/database/mongo/E1tWQz4_e.html

索引是提高查詢查詢效率最有效手段。索引是一種特殊的資料結構,索引以易於遍曆的形式儲存了資料的部分內容(如:一個特定的欄位或一組欄位值),索引會按一定規則對儲存值進行排序,而且索引的儲存位置在記憶體中,所在從索引中檢索資料會非常快。如果沒有索引,MongoDB必須掃描集合中的每一個文檔,這種掃描的效率非常低,尤其是在資料量較大時。 建立/重建索引 查看索引 刪除索引


1. 建立/重建索引

MongoDB全新建立索引使用ensureIndex()方法,對於已存在的索引可以使用reIndex()進行重建。 1.1 建立索引ensureIndex()

MongoDB建立索引使用ensureIndex()方法。

文法結構

db.COLLECTION_NAME.ensureIndex(keys[,options])
keys,要建立索引的參數列表。如:{KEY:1},其中key表示欄位名,1表示升序排序,也可使用使用數字-1降序。 options,選擇性參數,表示建立索引的設定。可選值如下: background,Boolean,在後台建立索引,以便建立索引時不阻止其他資料庫活動。預設值 false。 unique,Boolean,建立唯一索引。預設值 false。 name,String,指定索引的名稱。如果未指定,MongoDB會產生一個索引欄位的名稱和排序次序串聯。 dropDups,Boolean,建立唯一索引時,如果出現重複刪除後續出現的相同索引,只保留第一個。 sparse,Boolean,對文檔中不存在的欄位資料不啟用索引。預設值是 false。 v,index version,索引的版本號碼。 weights,document,索引權重值,數值在 1 到 99,999 之間,表示該索引相對於其他索引欄位的得分權重。

如,為集合sites建立索引:

> db.sites.ensureIndex({name: 1, domain: -1}){  "createdCollectionAutomatically" : false,  "numIndexesBefore" : 1,  "numIndexesAfter" : 2,  "ok" : 1}

注意:1.8版本之前建立索引使用createIndex(),1.8版本之後已移除該方法


1.2 重建索引reIndex()

db.COLLECTION_NAME.reIndex()

如,重建集合sites的所有索引:

> db.sites.reIndex(){  "nIndexesWas" : 2,  "nIndexes" : 2,  "indexes" : [    {  "key" : {"_id" : 1  },  "name" : "_id_","ns" : "newDB.sites"},{  "key" : {"name" : 1,"domain" : -1  },  "name" : "name_1_domain_-1",  "ns" : "newDB.sites"}  ],  "ok" : 1}


2. 查看索引

MongoDB提供了查看索引資訊的方法:getIndexes()方法可以用來查看集合的所有索引,totalIndexSize()查看集合索引的總大小,db.system.indexes.find()查看資料庫中所有索引資訊。


2.1 查看集合中的索引getIndexes()

db.COLLECTION_NAME.getIndexes()

如,查看集合sites中的索引:

>db.sites.getIndexes()[  {"v" : 1,"key" : {  "_id" : 1},"name" : "_id_","ns" : "newDB.sites"  },  {"v" : 1,"key" : {  "name" : 1,  "domain" : -1},"name" : "name_1_domain_-1","ns" : "newDB.sites"  }]


2.2 查看集合中的索引大小totalIndexSize()

db.COLLECTION_NAME.totalIndexSize()

如,查看集合sites索引大小:

> db.sites.totalIndexSize()16352


2.3 查看資料庫中所有索引db.system.indexes.find()

db.system.indexes.find()

如,當前資料庫的所有索引:

> db.system.indexes.find()


3. 刪除索引

不在需要的索引,我們可以將其刪除。刪除索引時,可以刪除集合中的某一索引,可以刪除全部索引。 3.1 刪除指定的索引dropIndex()

db.COLLECTION_NAME.dropIndex("INDEX-NAME")

如,刪除集合sites中名為"name_1_domain_-1"的索引:

> db.sites.dropIndex("name_1_domain_-1"){ "nIndexesWas" : 2, "ok" : 1 }


3.3 刪除所有索引dropIndexes()

db.COLLECTION_NAME.dropIndexes()

如,刪除集合sites中所有的索引:

> db.sites.dropIndexes(){  "nIndexesWas" : 1,  "msg" : "non-_id indexes dropped for collection",  "ok" : 1}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.