Science, asked by vikasbasa4109, 11 months ago

What is the importance of covered query in Mongodb?

Answers

Answered by lipad
0

Covered query makes the execution of the query faster because indexes are stored in RAM or sequentially located on disk. It makes the execution of the query faster. Covered query makes the fields are covered in the index itself, MongoDB can match the query condition as well as return the result fields using the same index without looking inside the documents.


Similar questions