MongoDB索引管理-索引的建立、檢視、刪除
阿新 • • 發佈:2021-08-23
索引是提高查詢查詢效率最有效的手段。索引是一種特殊的資料結構,索引以易於遍歷的形式儲存了資料的部分內容(如:一個特定的欄位或一組欄位值),索引會按一定規則對儲存值進行排序,而且索引的儲存位置在記憶體中,所在從索引中檢索資料會非常快。如果沒有索引,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 }
下一篇:MongoDB查詢過程檢視-執行計劃函式explain
上一篇:MongoDB文件查詢-分頁查詢(limit、skip)與查詢結果排序(sort)
https://itbilu.com/database/mongo/E1tWQz4_e.html#show-index