Mongodb學習筆記三(Mongodb索引操作及效能測試)

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   ar   使用   for   sp   

第三章 索引操作及效能測試索引在大資料下的重要性就不多說了 下面測試中用到了mongodb的一個用戶端工具Robomongo,大家可以在網上選擇下載。插入 測試資料

首先插入100萬條測試資料

for(var i=1;i<1000000;i++){ var person={Name:"jack"+i,Age:i,Address:["henan","wuhan"],Course:[{Name:"shuxue",Score:i},{Name:"wuli",Score:i}]}db.DemoTest.Person.insert(person) }

 

效能分析函數(explain)

mongodb中給我們提供了一個關鍵字叫做“explain"做效能分析。

執行查詢分析如下:

db.DemoTest.Person.find({Name:"jack5784124"}).explain()


從我們可以看出在沒有建立索引的情況下,查詢的時間大約是是615毫秒。


建立索引
db.TestCollection.Person.ensureIndex({Name:1})

-----1代表索引按照字母升序排列

查詢

從圖上我們可以看出,查詢時間變成了大約2毫秒,效能提高了幾百倍。

 
唯一索引

和sqlserver一樣都可以建立唯一索引,重複的索引值自然就不能插入,在mongodb中的使用方法是:

db.TestCollection.Person.ensureIndex({Name:1},{"unique":true})

 

複合式索引

有時候我們的查詢不是單條件的,可能是多條件,那麼我們可以建立複合式索引來加速查詢。

db.TestCollection.Person.ensureIndex({Name:1,Age:1})

 

刪除索引

 

db.TestCollection.Person.dropIndex("索引名稱")

 

 

Mongodb學習筆記三(Mongodb索引操作及效能測試)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.