MongoDB上的索引

來源:互聯網
上載者:User

標籤:

1. 將索引建在number鍵上名為nameIndex並且為正序索引({number:-1}為倒序索引) 如: db.list名.ensureIndex({number:1},{name:"nameIndex"}) ;

2. 在查詢時指定使用一個正序索引則調hint() 例如:db.list名.find({age:{$lte:56}},{name:1,_id:0}).hint({name:1});

3. 在查詢時我們究竟使用了哪個索引  如:db.list名.find({age:{$lte:56}}).explain();即可列印出所使用的索引資訊;

4. 建立索引有時很消耗效能那麼我們可以將其在後台執行使用 db.list名.ensureIndex({number:1},{background:true}) ;

5.建立唯一索引,其含義就是該索引的每個鍵對應的值的內容不可以有重複 如:db.list名.ensureIndex({number:1},{unique:true,dropDups:true});即可                              dropDups:true控制如有重複就將其刪除(可選)***但唯一索引的意義並不大***;

6.刪除指定的索引(name_-1為索引名) 如:db.runCommand({dropIndexes:"list名",index:"name_-1"});即可完成索引的刪除,或直接使用db.list名.drop(); 也可;

   若想刪除全部索引  如:db.runCommand({dropIndexes:"list名",index:"*"});即可;

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.