gpt4 book ai didi

mongodb - 使用 $or 进行 $text 搜索,结果为 "No query solutions"

转载 作者:行者123 更新时间:2023-12-02 09:09:16 24 4
gpt4 key购买 nike

Meteor 中的服务器端查询返回“无查询解决方案”

$or: [
{
$text: {
$search: searchValue,
$caseSensitive: false,
$diacriticSensitive: false
}
},
{
content: {$regex: re}
}
]

最佳答案

您必须创建文本索引来映射您想要搜索的每个元素。示例:

db.collection.createIndex({ element1: "text",
element2:'text' })

“要在 $or 表达式中使用 $text 查询,$or 数组中的所有子句都必须建立索引。”

限制定义于 $text behavior

关于mongodb - 使用 $or 进行 $text 搜索,结果为 "No query solutions",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48146146/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com