mongo索引命令
阿新 • • 發佈:2018-03-06
bsp esb -name 後臺 移除 sites code 檢查 默認 1.1 創建索引
1.2 重建索引
2.1 查看集合中的索引
2.2 查看集合中的索引大小
2.3 查看數據庫中所有索引
3.1 刪除指定的索引
3.3 刪除所有索引
http://blog.csdn.net/salmonellavaccine/article/details/53907535
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
}
1.3 創建唯一索引
db.COLLECTION_NAME.ensureIndex({‘,},{‘unique‘,true})
檢查數據唯一性。
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
}
4.查詢分析工具
db.COLLECTION_NAME.find().explain()
可分析查詢使用的索引情況,耗時,及掃描文檔數的統計
mongo索引命令