Skip to content

Instantly share code, notes, and snippets.

@ggoodale
Created February 10, 2010 21:32
Show Gist options
  • Save ggoodale/300870 to your computer and use it in GitHub Desktop.
Save ggoodale/300870 to your computer and use it in GitHub Desktop.
Same query, with a hint
> 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