我的一个系列不再在某些搜索值上返回任何内容。这是一个控制台转储来说明问题:
meteor:PRIMARY> db['test'].insert({ sku: 'Barrière' });
WriteResult({ "nInserted" : 1 })
meteor:PRIMARY> db['test'].insert({ sku: 'Bannière' });
WriteResult({ "nInserted" : 1 })
meteor:PRIMARY> db['test'].createIndex({ sku: 'text' });
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}
meteor:PRIMARY> db['test'].find({ sku: /ba/i });
{ "_id" : ObjectId("57bbb447fc77800b1e63ba64"), "sku" : "Barrière" }
{ "_id" : ObjectId("57bbb455fc77800b1e63ba65"), "sku" : "Bannière" }
meteor:PRIMARY> db['test'].find({ $text: { $search: 'ba' } });
meteor:PRIMARY> db['test'].find({ $text: { $search: 'Ba' } });
meteor:PRIMARY>
搜索没有返回任何内容,即使我明确添加了两个应该匹配的文档。发生了什么事?我错过了什么选项/配置?
我试过了这个查询
meteor:PRIMARY> db['test'].find({ $or: [ { $text: { $search: 'ba' } }, { sku: { $regex: 'ba', $options: 'i' } } ] });
Error: error: {
"waitedMS" : NumberLong(0),
"ok" : 0,
"errmsg" : "error processing query: ns=meteor.testTree: $or\n sku regex /ba/\n TEXT : query=ba, language=english, caseSensitive=0, diacriticSensitive=0, tag=NULL\nSort:
{}\nProj: {}\n planner returned error: Failed to produce a solution for TEXT under OR - other non-TEXT clauses under OR have to be indexed as well.",
"code" : 2
}
但我不确定如何制作索引以搜索部分值(即使用$regex
或其他运算符)。使用第三方索引器对我来说似乎有点过分了...当然有一种方法可以执行全文搜索,以及一次模式匹配?
是我执行两个查询并手动合并结果的唯一解决方案吗?
答案 0 :(得分:0)
试试这个:
db['test'].insert({ sku: 'ba ba' });
db['test'].find({ $text: { $search: 'ba' } });
另请参阅mongodb文档:
如果搜索字符串是以空格分隔的字符串,$ text运算符会对每个字词执行逻辑OR搜索,并返回包含任何字词的文档。
我认为mongodb $ text $ search只是按空格分割字符串并匹配整个单词。如果您需要搜索部分单词,可能需要使用其他一些框架来寻求帮助。也许你也可以使用$ regex来做到这一点。
如果唯一的要求是通过前缀查询单词,可以使用$ regex,如果只是通过前缀查询,它可以使用索引。否则,如果将扫描整个集合。