I am comparing against MySQL, where we fire a query the first attempt might read from disk and the second read will be from Memory. Does this happens in MongoDB? The reason is I am having a Query with AND & OR query and I have index on all fields. If I remove one of the OR FIELD , the read is confined to Index only (KeyExamined) and if I add the same field it's reading from Disk as well (Documents Examined).
I was in the impression the first time the documents would be read from disk and second time it would read from memory. Please let me know
Musthafa