Google News
logo
MongoDB - Interview Questions
Explain the significance of the covered query?
A covered query makes the query implementation quicker as we store the indexes in the RAM or consecutively located on the disk. It makes query execution quicker. The covered query covers all the fields in the index, MongoDB matches the query condition along with returning the result fields.
Advertisement