假设我有一个 mongo 集合,其中text index
包含itemName
以下 3 个文档:
{
_id: ...,
itemName: 'Mashed carrots with big carrot pieces',
price: 1.29
},
{
_id: ...,
itemName: 'Carrot juice',
price: 0.79
},
{
_id: ...,
itemName: 'Apple juice',
price: 1.49
}
然后我执行如下查询:
db.items.find({ $text: { $search: 'Car' } }, { score: { $meta: "textScore" } }).sort( { score: { $meta: "textScore" } } );
我如何强制 mongo返回以“Car”开头的文档(不区分大小写)itemName
在返回字符串中某处也包含“Car”的任何其他文档
所以我想按以下顺序检索文档:
[
{..., itemName: 'Carrot Juice', ...},
{..., itemName: 'Mashed carrots with big carrot pieces', ...}
]
当然,这意味着在搜索功能中使用,因此向用户显示项目是完全有意义的在显示之后的任何其他项目之前向用户显示以他的搜索字符串开头的项目是完全有意义的。
直到现在我都在使用标准的正则表达式,但这里的性能当然要差得多!+ 因为我必须搜索不区分大小写,根据文档,正常的正则表达式根本不使用任何索引?!
编辑:
此外,有时 的行为$text
非常奇怪。例如,我有大约 10-15 项itemName
以“Zwiebel”开头的项目。这个查询
db.items.find({ $text: { $search: "Zwiebel" }, supplier_id: 'iNTJHEf5YgBPicTrJ' }, { score: { $meta: "textScore" } }).sort( { score: { $meta: "textScore" } } );
像魅力一样工作并返回所有这些文档,而这个查询
db.items.find({ $text: { $search: "Zwie" }, supplier_id: 'iNTJHEf5YgBPicTrJ' }, { score: { $meta: "textScore" } }).sort( { score: { $meta: "textScore" } } );
不返回任何东西!只需将$search
.
我真的不明白这怎么可能?!
最好的,P