Last active
October 29, 2018 11:35
-
-
Save miguelangelnieto/a78ca174cca476caa199346a6d53c9cf to your computer and use it in GitHub Desktop.
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
{ | |
"queryPlanner" : { | |
"plannerVersion" : 1, | |
"namespace" : "test.names", | |
"indexFilterSet" : false, | |
"parsedQuery" : { | |
"$and" : [ | |
{ | |
"Name" : { | |
"$eq" : "Miguel" | |
} | |
}, | |
{ | |
"Age" : { | |
"$gt" : 34 | |
} | |
} | |
] | |
}, | |
"winningPlan" : { | |
"stage" : "FETCH", | |
"filter" : { | |
"$and" : [ | |
{ | |
"Name" : { | |
"$eq" : "Miguel" | |
} | |
}, | |
{ | |
"Age" : { | |
"$gt" : 34 | |
} | |
} | |
] | |
}, | |
"inputStage" : { | |
"stage" : "IXSCAN", | |
"keyPattern" : { | |
"Street" : 1 | |
}, | |
"indexName" : "Street_1", | |
"isMultiKey" : false, | |
"multiKeyPaths" : { | |
"Street" : [ ] | |
}, | |
"isUnique" : false, | |
"isSparse" : false, | |
"isPartial" : false, | |
"indexVersion" : 2, | |
"direction" : "forward", | |
"indexBounds" : { | |
"Street" : [ | |
"[MinKey, MaxKey]" | |
] | |
} | |
} | |
}, | |
"rejectedPlans" : [ ] | |
}, | |
"serverInfo" : { | |
"host" : "Miguels-MacBook-Pro.local", | |
"port" : 27017, | |
"version" : "3.6.8", | |
"gitVersion" : "6bc9ed599c3fa164703346a22bad17e33fa913e4" | |
}, | |
"ok" : 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment