"MongoDB" The basic operation of Index in MongoDB

Source: Internet
Author: User

Tag: Database MongoDB Index

In the past four blogs, we attached importance to the index, including description and comparison with usage of index. Now in this blog, we'll mainly focus on the basic operation of index. Such query, remove, repair and so on.

1. View Index

Getindexes could view all the indexes in the collections.
2. Delete index Delete all the indexes:db.test.dropIndexes () Delete one index:db.test.dropIndex ({name:1})
Use the command to delete index:
Db.runcommand ({dropindexes: "Test", Index:{name:1}})


3. Rebuild Indexdb.test.reIndex () is equalant to Db.runcommand ({reIndex: ' Test '})

Attention:this operation need to add the lock into the document, so if the collection is filled with a large number of DA TA, this operation would take much time.
If using repair to fix database, the database would rebuild the index.

"MongoDB" The basic operation of Index in MongoDB

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.