Quantcast
Channel: CodeFari
Viewing all articles
Browse latest Browse all 265

Covered Queries in MongoDB

$
0
0
According to mongoDB document overview of index,If your application queries a collection on a particular field or set of fields, then an index on the queried field or a compound index on the set of fields can prevent the query from scanning the whole collection to find and return the query results. For more information about indexes click here.

What is a Covered Query

Covered Query : All the fields in the query are part of an index and all fields returned in the query are in the same index.

 MongoDB matches the query conditions and returns the result using the same index without actually looking inside documents. Since indexes are present in RAM, fetching data from indexes is much faster as compared to fetching data by scanning documents.

Using Covered Queries
Consider the following document in customers collection:


{
   "_id": ObjectId("67667989hu9uh665"),
   "contact": "987654321"
   "gender": "M",
   "name": "Dilip",
   "user_name": "dksingh"
}


We should  create a compound index for customerscollection on fields gender and user_name using following query:


>db. customers.ensureIndex({gender:1,user_name:1})


Here now, this index will cover the following query:


>db. customers.find({gender:"M"},{user_name:1,_id:0})


It would fetch the required data from indexed data which is very fast. Since our index does not include _id field it means MongoDB did not go into database documents, we have explicitly excluded _id from result set of our query as MongoDB by default returns _id field in every query.
See following query here we did not create index of gender so when we execute this query, mongoDB  will scan the this document in database.


>db. customers.find({gender:"M"},{user_name:1})


At the end , remember that an index cannot cover a query if:

Any of the indexed fields is an array OR indexed fields is a subdocument

Viewing all articles
Browse latest Browse all 265

Trending Articles