Indexes.
Types of indexes.
Index properties.
The various indexing strategies to be considered.
Indexes are used to improve the performance of the query. Without indexes, MongoDB must search the entire collection to select those documents that match the query statement. MongoDB therefore uses indexes to limit the number of documents that it must scan.
Indexes are special data ...