Created
February 10, 2010 21:32
-
-
Save ggoodale/300870 to your computer and use it in GitHub Desktop.
Same query, with a hint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> db.users.find({last_logged_in : {'$ne': null}}).hint({last_logged_in: 1}).explain() | |
{ | |
"cursor" : "BtreeCursor last_logged_in_1", | |
"startKey" : { | |
"last_logged_in" : { | |
"$minElement" : 1 | |
} | |
}, | |
"endKey" : { | |
"last_logged_in" : { | |
"$maxElement" : 1 | |
} | |
}, | |
"nscanned" : 536325, | |
"n" : 8, | |
"millis" : 372 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment