我使用以下文档创建了一个测试MongoDB集合“sampleCollection”:
"_id" : ObjectId("510929e041cb2179b41ace1c"),
"stringField" : "Random string0",
"longField" : NumberLong(886)
并在字段“stringField”上有索引。 当我执行
db.sampleCollection.find({"stringField":"Random string0"}).explain()
一切都很好:
"cursor" : "BtreeCursor stringField_1",
"isMultiKey" : false,
"n" : 2,
"nscannedObjects" : 2,
"nscanned" : 2,
"nscannedObjectsAllPlans" : 2,
"nscannedAllPlans" : 2,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 0,
"indexBounds" : {
"stringField" : [
[
"Random string0",
"Random string0"
]
]
}
但是
db.sampleCollection.find({$query:{"stringField":"Random string0"}}).explain()
让我
"cursor" : "BasicCursor",
"isMultiKey" : false,
"n" : 0,
"nscannedObjects" : 4,
"nscanned" : 4,
"nscannedObjectsAllPlans" : 4,
"nscannedAllPlans" : 4,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 0,
"indexBounds" : {
}
这看起来不是问题,但我在生产中使用 org.springframework.data.mongodb 框架,查询构造的使用是编写存储库的唯一方法。 因此我有一个完全忽略索引数据的数据库。
这是对的吗?或者我误解了什么?
答案 0 :(得分:5)
这很有趣我无法决定说这是一个错误或者不是由你决定:
有两种语法:http://docs.mongodb.org/manual/reference/operator/query/
使用时:
db.collection.find( { age : 25 } )
也将
db.collection.find( { age : 25 } ).explain()
db.collection.find( { age : 25 } ).hint(someindex)
工作正常。
使用解决方案时(其他语法):
db.collection.find( { $query: { age : 25 } } )
的输出
db.sampleCollection.find({$query:{"stringField":"Random string0"}}).explain()
将显示为不使用索引的查询
如果您还使用.hint作为索引,它将省略结果。 :)(那是我真的不明白)
幸运的是,这些操作还有另一种语法:您可以使用:
db.sampleCollection.find({$query:{"stringField":"Random string0"}, $explain:1})
它将具有正确的输出并向我显示索引的用法。 $ hint也有类似的语法。
您可以在此处查看文档:{{3}}
我觉得这很有趣所以我打开了探查器:
我制作了一个测试集合(queryTst),其中包含大约250,000个文档,每个文档只有_id和结构中的年龄字段,并附有年龄索引。
对于此查询:
db.queryTst.find({$query:{"age":16},$explain:1})
我得到了:
{
"cursor" : "BtreeCursor age_1",
"isMultiKey" : false,
"n" : 2,
"nscannedObjects" : 2,
"nscanned" : 2,
"nscannedObjectsAllPlans" : 2,
"nscannedAllPlans" : 2,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 0,
"indexBounds" : {
"age" : [
[
16,
16
]
]
},
"allPlans" : [
{
"cursor" : "BtreeCursor age_1",
"n" : 2,
"nscannedObjects" : 2,
"nscanned" : 2,
"indexBounds" : {
"age" : [
[
16,
16
]
]
}
}
],
"oldPlan" : {
"cursor" : "BtreeCursor age_1",
"indexBounds" : {
"age" : [
[
16,
16
]
]
}
},
"server" : ""
}
为此:
db.queryTst.find({$query:{"age":16},$explain:1}).explain()
我得到了:
"cursor" : "BasicCursor",
"isMultiKey" : false,
"n" : 0,
"nscannedObjects" : 250011,
"nscanned" : 250011,
"nscannedObjectsAllPlans" : 250011,
"nscannedAllPlans" : 250011,
"scanAndOrder" : false,
"indexOnly" : false,
"nYields" : 0,
"nChunkSkips" : 0,
"millis" : 103,
"indexBounds" : {
},
在探查器日志中:对于第一个
{
"ts" : ISODate("2013-01-30T20:35:40.526Z"),
"op" : "query",
"ns" : "test.queryTst",
"query" : {
"$query" : {
"age" : 16
},
"$explain" : 1
},
"ntoreturn" : 0,
"ntoskip" : 0,
"nscanned" : 2,
"keyUpdates" : 0,
"numYield" : 0,
"lockStats" : {
"timeLockedMicros" : {
"r" : NumberLong(368),
"w" : NumberLong(0)
},
"timeAcquiringMicros" : {
"r" : NumberLong(8),
"w" : NumberLong(5)
}
},
"nreturned" : 1,
"responseLength" : 567,
"millis" : 0,
"client" : "127.0.0.1",
"user" : ""
}
第二个:
{
"ts" : ISODate("2013-01-30T20:35:47.715Z"),
"op" : "query",
"ns" : "test.queryTst",
"query" : {
"query" : {
"$query" : {
"age" : 16
},
"$explain" : 1
},
"$explain" : true
},
"ntoreturn" : 0,
"ntoskip" : 0,
"nscanned" : 250011,
"keyUpdates" : 0,
"numYield" : 0,
"lockStats" : {
"timeLockedMicros" : {
"r" : NumberLong(104092),
"w" : NumberLong(0)
},
"timeAcquiringMicros" : {
"r" : NumberLong(13),
"w" : NumberLong(5)
}
},
"nreturned" : 1,
"responseLength" : 373,
"millis" : 104,
"client" : "127.0.0.1",
"user" : ""
}
以某种方式对我说的是explain()导致混合语法中的表扫描。
答案 1 :(得分:4)
这不是一个错误,我碰巧遇到了同样的问题,并且即将在mongodb中将其作为一个问题报告,但是阅读文档它指定你不应该混合游标方法(如解释( ))使用此查询格式,您应该使用$ explain,就像在本页提供的示例中一样: