mongodb之索引学习
學習索引分類和創建索引: ? ?????????????
1._id索引 大多數集合默認的索引
2.單鍵索引:手動創建,一個單一的值
3.多建索引:組合函數
4.復合索引 :最左前綴原則
5.過期索引 :一定時間內失效,注意點:必須是isodate或者其數組,不要使用時間戳,否則不會被自動刪除。
6.全文索引 db.tm.ensureindex({"article":"text"}),db.tm.ensureindex({"key1":"text","key2":"text"}),db.tm.ensureindex({$**:"text"})
查詢:db.tm.find({$text:{$search:“aa”}})
db.tm.find({$text:{$search:"aa bb cc "}})
db.tm.find({$text:{$search:"aa bb -cc"}})
db.tm.find({$text:{$search:"\"a\"\"bb"\"cc\""}})
全文索引的匹配度$meta
db.tm.find({$text:{$search:"aa bb"}},{score:{$meta:"textScore"}})
db.tm.find({$text:{$search:"aa bb"}},{score:{$meta:"textScore"}}).sort({score:{$meta:"textScore"}})
每次只能指定$text
7.地理位置索引(滴滴打車,大眾點評)
2d索引(地址位置索引)
db.localtion.ensureindex({"w":"2d"})
查看索引:db.tm.getIndexes()
建索引db.t1.ensureIndex({x:1})
多鍵索引db.tm.ensureIndex({x:[1,2,3,4,5]})
復合索引 db.tm.ensureIndex({x:1,y:1})
刪除索引db.tm.dropIndex("x_1_y_1")
db.tm.find({x:100,y:100}).explain()
過期索引:db.tm.insert({time:new Date()}) ISOdate 就是當前時間
db.tm.ensureIndex({time:1},{expireAfterSeconds:10})
db.tm.insert({time:new Date(),z:1})
全文索引
db.t1.ensureIndex({article:"text"})
db.t1.insert({article:"aa bb cc"})
查找db.t1.find({$text:{$search:"aa"}})
db.t1.find({$text:{$search:"aa bb cc"}})或關系
db.t1.find({$text:{$search:"aa bb -cc"}})不包含CC
db.t1.find({$text:{$search:"\"aa\"\" bb\"\" -cc\""}})且的關系
全文索引的相似度:db.t1.find({$text:{$search:"aa bb"}},{score:{$meta:"textScore"}})
db.t1.find({$text:{$search:"aa bb"}},{score:{$meta:"textScore"}}).sort({score:{$meta:"textScore"}})
索引命名
db.t1.ensureIndex({x:1,y:2,z:2},{name:"xyz"})
db.t1.dropIndex("xyz")
創建唯一索引
db.t2.ensureIndex({m:1,n:1},{unique:true})
查看s索引存在某個字段
db.abc.find({m:{$exists:true}})
創建2d索引:平面地理位置索引,位置表示方式,經緯度[經度(-180,180),緯度(-90,90)]
db.location.ensureIndex({"w":"2d"})
db.location.insert({w:[1,1]})
db.location.insert({w:[1,2]})
db.location.insert({w:[3,2]})
db.location.insert({w:[32,22]})
db.location.insert({w:[100,90]})
就近查詢
db.location.find({w:{$near:[1,1]}})
查詢
db.location.find({w:{$near:[1,1],$maxDistance:10}})
地址位置索引
geoNear
db.runCommand({geoNear:"location",near:[1,2],maxDistance:10,num:1})
db.stats
for(i=1;i<10000;i++)db.tt.insert({n:i})
查看運行狀態
/export/mongodb/bin/mongostat -h 192.168.1.70:22222
faults locked idx miss沒有使用索引值
qr|qw讀寫隊列
查看當前級別
db.getProfilingStatus()
0:profile為關閉,mongodb不會記錄任何操作
1配合slowms使用,mongodb會記錄任何超過slowms的操作
2會記錄任何記錄
修改級別profile
db.setProfilingLevel(0)
db.system.profile.find().sort({$natural:1}).limit(10)
查詢排序
????????????db.system.indexes.find().sort({$nature:1})
? ? ? ? ? ??
本文轉自 DBAspace 51CTO博客,原文鏈接:http://blog.51cto.com/dbaspace/1869918
總結
以上是生活随笔為你收集整理的mongodb之索引学习的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux如何在线修改hostname
- 下一篇: 宅男程序员给老婆的计算机课程之8:控制器