我正在尝试查找字段以值开头的文档。
使用notablescan禁用表扫描。
这有效:
db.articles.find({"url" : { $regex : /^http/ }})
这不是:
db.articles.find({"source.homeUrl" : { $regex : /^http/ }})
我收到错误:
error: { "$err" : "table scans not allowed:moreover.articles", "code" : 10111 }
url
和source.homeUrl
都有索引:
{
"v" : 1,
"key" : {
"url" : 1
},
"ns" : "mydb.articles",
"name" : "url_1"
}
{
"v" : 1,
"key" : {
"source.homeUrl" : 1
},
"ns" : "mydb.articles",
"name" : "source.homeUrl_1",
"background" : true
}
对子文档索引的正则表达式查询有任何限制吗?
答案 0 :(得分:29)
当您禁用表扫描时,这意味着表扫描"赢得"在查询优化器中将无法运行。您还没有发布解释,但根据错误假设这里发生了什么是合理的。尝试明确地暗示索引:
db.articles.find({"source.homeUrl" : { $regex : /^http/ }}).hint({"source.homeUrl" : 1})
这应该消除表扫描作为可能的选择并允许查询成功返回。