創(chuàng)建索引:
db.t_order_detail.createIndex({"order_id":1})
復(fù)合索引:
db.t_order_detail.createIndex({"order_id":1,"detail_id":1,"batch_id":1})
在后臺創(chuàng)建索引:
db.t_order_detail.createIndex({order_id:1},{background:1})
創(chuàng)建TTL索引:
a.經(jīng)過指定的時間間隔后,集合失效:
db.t_order_detail.createIndex( { "createTime": 1 }, { expireAfterSeconds: 60*60 } ) -----過期時間(單位秒) 使用getIndexes() 查看
修改TTL索引的expireAfterSeconds屬性值:
db.runCommand( { collMod: "t_order_detail",index: { keyPattern: { createTime: 1 },expireAfterSeconds: 7200}})
b.指定時間點過期,集合失效:
db.t_order_detail.createIndex({"expireAt": 1},{expireAfterSeconds:0})
db.t_order_detail.insert({
"createdAt": new Date('Oct 21, 2018 21:30:00'),
"log_Event": 1,
"log_Message": "Success!"
})
查看索引:
db.t_order_detail.getIndexes()
查看索引鍵:
db.t_order_detail.getIndexKeys()
查看集合索引總大?。?br/>db.t_order_detail.totalIndexSize()
查看集合各索引的詳細(xì)信息:
db.t_order_detail.getIndexSpecs()
刪除索引:
db.t_order_detail.dropIndex("index_name")
刪除所有索引
db.t_order_detail.dropIndexes()方法用于刪除全部的索引
索引重建:
db.t_order_detail.reIndex({"order_id":1})
10年積累的網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有黔西南州免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
備注:
在前臺創(chuàng)建索引期間會鎖定集合,會導(dǎo)致其它操作無法進(jìn)行數(shù)據(jù)讀寫,在后臺創(chuàng)建索引,會定期釋放寫鎖,從而保證其它操作的運行,但是后臺操作會在耗時更長,尤其是在頻繁進(jìn)行寫入的集合上。