您好,登錄后才能下訂單哦!
創建索引:
db.t_order_detail.createIndex({"order_id":1})
復合索引:
db.t_order_detail.createIndex({"order_id":1,"detail_id":1,"batch_id":1})
在后臺創建索引:
db.t_order_detail.createIndex({order_id:1},{background:1})
創建TTL索引:
a.經過指定的時間間隔后,集合失效:
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()
查看集合索引總大小:
db.t_order_detail.totalIndexSize()
查看集合各索引的詳細信息:
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})
備注:
在前臺創建索引期間會鎖定集合,會導致其它操作無法進行數據讀寫,在后臺創建索引,會定期釋放寫鎖,從而保證其它操作的運行,但是后臺操作會在耗時更長,尤其是在頻繁進行寫入的集合上。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。