Skip to content

Instantly share code, notes, and snippets.

@ggoodale
Created February 10, 2010 21:30
Show Gist options
  • Save ggoodale/300869 to your computer and use it in GitHub Desktop.
Save ggoodale/300869 to your computer and use it in GitHub Desktop.
Explain() on a query in mongodb
> db.users.find({last_logged_in : {'$ne': null}}).explain()
{
"cursor" : "BasicCursor",
"startKey" : {
},
"endKey" : {
},
"nscanned" : 536299,
"n" : 8,
"millis" : 1476,
"allPlans" : [
{
"cursor" : "BasicCursor",
"startKey" : {
},
"endKey" : {
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment