I have a few questions about MongoDB:
(1) Does indexing help with projection?
(2) I have assigned a collection a number of indexes and tried to run a find with sort, and then use explain
, it shows BtreeCursor
index on the sorted field.
Could it be that the other indexes have helped in the query part and explain
just didn't show it because it shows only the last index that helped the find?
Or explain
should show all indexes that assisted in querying, sorting, etc?
Thanks.
I believe the only time it will really help (defined by performance etc) is if the query is "covered": http://docs.mongodb.org/manual/tutorial/create-indexes-to-support-queries/
So for example, if you wanted to query on
{d:1, e:2}
and get back{_id, t, e}
, you would do:And that query's
explain()
output would showindexOnly
as true meaning that it never loaded documents from disk to return a response.So yes, indexes can help with projection under certain circumstances.
Yes it does.
If you are a victim of index intersectioning then you would use an
explain(true)
to show all index plans that were used.It is good to note that separate indexes are not used for find and sort with intersectioning, so the answer here is actually no: http://docs.mongodb.org/manual/core/index-intersection/#index-intersection-and-sort