<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
索引是什麼,索引就好比一本書的目錄,當我們想找某一章節的時候,通過書籍的目錄可以很快的找到,所以適當的加入索引可以提高我們查詢的資料的速度。
準備工作,向MongoDB中插入20000條記錄,沒條記錄都有number和name
> for(var i = 0 ; i<200000 ;i++){ ... db.books.insert({number:i,name:"book"+i}) ... } WriteResult({ "nInserted" : 1 }) > db.books.find({},{_id:0}) { "number" : 0, "name" : "book0" } { "number" : 1, "name" : "book1" } { "number" : 2, "name" : "book2" } { "number" : 3, "name" : "book3" } { "number" : 4, "name" : "book4" } { "number" : 5, "name" : "book5" } { "number" : 6, "name" : "book6" } { "number" : 7, "name" : "book7" } …… >
例:查詢number為65535的name
不使用索引的情況下,查詢時間請看millis
> db.books.find({number:65535},{_id:0,name:1}).explain() { "cursor" : "BasicCursor", "isMultiKey" : false, "n" : 1, "nscannedObjects" : 200000, "nscanned" : 200000, "nscannedObjectsAllPlans" : 200000, "nscannedAllPlans" : 200000, "scanAndOrder" : false, "indexOnly" : false, "nYields" : 1562, "nChunkSkips" : 0, "millis" : 172, "server" : "G08FNSTD131598:27017", "filterSet" : false } >
使用索引的情況下,先建立一個簡單索引,用number建立一個索引
db.books.ensureIndex({number:1}) { "createdCollectionAutomatically" : false, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 }
> db.books.find({number:65535},{_id:0,name:1}).explain() { "cursor" : "BtreeCursor number_1", "isMultiKey" : false, "n" : 1, "nscannedObjects" : 1, "nscanned" : 1, "nscannedObjectsAllPlans" : 1, "nscannedAllPlans" : 1, "scanAndOrder" : false, "indexOnly" : false, "nYields" : 0, "nChunkSkips" : 0, "millis" : 0, "indexBounds" : { "number" : [ [ 65535, 65535 ] ] }, "server" : "G08FNSTD131598:27017", "filterSet" : false } >
從上面可以看到,查詢的時間上帶索引的情況要有明顯的縮短
準備工作,刪除剛剛建立的books檔案
定義一個函數,來完成記錄時間和插入資料的操作
> var time = function(){ ... var start = new Date(); ... for(var i = 0;i < 200000 ; i++){ ... db.books.insert({number:i,name:"book"+i}); ... } ... var end = new Date(); ... return end - start; ... }
不進行新增索引的時候:
> var x = time(); > x 63057
建立索引
> db.books.ensureIndex({number:1}) { "createdCollectionAutomatically" : false, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 }
存在索引的時候的插入資料所用的時間
> var x = time(); > x 67223
可以看到不存在索引的時候,插入的資料所用的時間較短
綜上:當我們對一個檔案需要進行頻繁的插入操作的時候,建立不巧當的索引會導致插入效率的降低。
建立索引的時候注意1是正序建立索引-1是倒序建立索引
索引的建立在提高查詢效能的同事會影響插入的效能
對於經常查詢少插入的檔案可以考慮用索引
符合索引要注意索引的先後順序
每個鍵全建立索引不一定就能提高效能呢,索引不是萬能的
在做排序工作的時候如果是超巨量資料量也可以考慮加上索參照來提高排序的效能
①在建立索引的時候,使用了ensureIndex()這個方法,使用它會建立索引,名字就是鍵的名字加上一個數位,例如number_1或者number_-1,其中1代表是正序索引,-1代表逆序索引
②如果覺得1或-1比較不容易記,還可以使用自定義名字來建立索引
> db.books.ensureIndex({name:1},{name:"bookNameIndex"}) { "createdCollectionAutomatically" : false, "numIndexesBefore" : 2, "numIndexesAfter" : 3, "ok" : 1 }
③一個檔案建立了多個索引,但是我又想強制使用其中的一個索引,怎麼辦
例如,我在上面的檔案中對number建立了逆序索引,對name建立了正序索引,現在我想查詢的時候用name進行索引,我應該這麼寫:
> db.books.find({name:"book2016"},{_id:0}).hint({name:1}) { "number" : 2016, "name" : "book2016" } { "number" : 2016, "name" : "book2016" } >
如果使用了沒有建立的索引,那麼會返回一個“bad hint”的錯誤。
④檢視所用的索引和查詢資料狀態資訊,可以使用explain()方法
> db.books.find({name:"book2016"},{_id:0}).hint({name:1}).explain() { "cursor" : "BtreeCursor bookNameIndex", "isMultiKey" : false, "n" : 2, "nscannedObjects" : 2, "nscanned" : 2, "nscannedObjectsAllPlans" : 2, "nscannedAllPlans" : 2, "scanAndOrder" : false, "indexOnly" : false, "nYields" : 0, "nChunkSkips" : 0, "millis" : 0, "indexBounds" : { "name" : [ [ "book2016", "book2016" ] ] }, "server" : "G08FNSTD131598:27017", "filterSet" : false }
上面看到,我們的索引的名字是bookNameIndex,並且millis是0,nscanned是查到了幾個檔案
⑤在關係型資料庫中嚐嚐會有約束條件,比較常用的就是唯一性,在MongoDB中也可以指定唯一
建立唯一索引:db.books.ensureIndex({name:-1},{unique:true})
上面我通過有索引和無索引插入了兩組完全一樣的資料,此時如果去建立唯一的索引,那麼就會出錯
> db.books.ensureIndex({name:1},{unique:true}) { "createdCollectionAutomatically" : false, "numIndexesBefore" : 1, "ok" : 0, "errmsg" : "E11000 duplicate key error index: mongoDBTest.books.$name_1 dup key: { : "book0" }", "code" : 11000 }
此時可以通過dropDups:true屬性來進行刪除重複的資料
> db.books.ensureIndex({name:1},{unique:true,dropDups:true}) { "createdCollectionAutomatically" : false, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 } >
刪除重複之後,再去加入一個相同名字的資料,就會出現下面的情況
> db.books.insert({number:1,name:"book1"}) WriteResult({ "nInserted" : 0, "writeError" : { "code" : 11000, "errmsg" : "insertDocument :: caused by :: 11000 E11000 duplicat e key error index: mongoDBTest.books.$name_1 dup key: { : "book1" }" } }) >
⑥刪除索引
指定要刪除的索引
db.runCommand({dropIndexes : ”books” , index:”name_-1”})
刪除所有的索引
db.runCommand({dropIndexes : ”books” , index:”*”})
注意:索引的建立時同步的,所以如果想指定非同步的去建立索引,就要指定在後臺去建立
db.books.ensureIndex({name:-1},{background:true})
2D索引,舉例在一片區域中建立座標系,那麼很多地點可以看做是一個個的座標,此時2d索引就可以幫助我們進行快速的查詢某一個範圍的地點了。
例:我在MongoDB中建立一個擁有很多座標點的檔案
> db.map.find({},{_id:0}) { "gis" : { "x" : 185, "y" : 150 } } { "gis" : { "x" : 70, "y" : 180 } } { "gis" : { "x" : 75, "y" : 180 } } { "gis" : { "x" : 185, "y" : 185 } } { "gis" : { "x" : 65, "y" : 185 } } { "gis" : { "x" : 50, "y" : 50 } } { "gis" : { "x" : 50, "y" : 100 } } { "gis" : { "x" : 60, "y" : 55 } } { "gis" : { "x" : 65, "y" : 80 } } { "gis" : { "x" : 55, "y" : 80 } } { "gis" : { "x" : 0, "y" : 0 } } { "gis" : { "x" : 0, "y" : 200 } } { "gis" : { "x" : 200, "y" : 0 } } { "gis" : { "x" : 200, "y" : 200 } } >
db.map.ensureIndex({"gis":"2d"},{min:-1,max:201})
預設會建立一個[-180,180]之間的2D索引
例子:
①查詢點(70,180)最近的3個點
> db.map.find({"gis":{$near:[70,180]}},{gis:1,_id:0}).limit(3) { "gis" : { "x" : 70, "y" : 180 } } { "gis" : { "x" : 75, "y" : 180 } } { "gis" : { "x" : 65, "y" : 185 } }
②查詢以點(50,50)和點(190,190)為對角線的正方形中的所有的點
> db.map.find({gis:{$within:{$box:[[50,50],[190,190]]}}},{_id:0,gis:1}) { "gis" : { "x" : 185, "y" : 150 } } { "gis" : { "x" : 75, "y" : 180 } } { "gis" : { "x" : 70, "y" : 180 } } { "gis" : { "x" : 65, "y" : 185 } } { "gis" : { "x" : 50, "y" : 100 } } { "gis" : { "x" : 65, "y" : 80 } } { "gis" : { "x" : 55, "y" : 80 } } { "gis" : { "x" : 60, "y" : 55 } } { "gis" : { "x" : 50, "y" : 50 } } { "gis" : { "x" : 185, "y" : 185 } } >
③查詢出以圓心為(56,80)半徑為50規則下的圓心面積中的點
> db.map.find({gis:{$within:{$center:[[56,80],50]}}},{_id:0,gis:1}) { "gis" : { "x" : 55, "y" : 80 } } { "gis" : { "x" : 50, "y" : 100 } } { "gis" : { "x" : 50, "y" : 50 } } { "gis" : { "x" : 60, "y" : 55 } } { "gis" : { "x" : 65, "y" : 80 } }
到此這篇關於MongoDB資料庫索參照法的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45