我正在尝试查找字段以值开头的文档。
使用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
}
对子文档索引的正则表达式查询是否有任何限制?