0 votes
in MongoDB by
What is the significance of the covered query?

1 Answer

0 votes
by
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.

Related questions

0 votes
asked Jan 7, 2023 in MongoDB by sharadyadav1986
0 votes
asked Jan 7, 2023 in MongoDB by sharadyadav1986
...