0

例如,如果现在有一个字符串“nite out”,我希望我的字符串与“nite”匹配或将其前缀与“out”匹配,因此对于上述字符串评分必须像第一个“nite out”,“nite outing” ", "nite" 和 "out" 优先级相同,"outing"。

4

1 回答 1

1

下面提到两个查询都将匹配“nite out”和“nite outing”

“使用默认 AND 运算符”

POST YourIndex/YourType/_search
{
    "query": {
        "query_string": {
           "query": "nite AND out*"
        }
    }     
}

“使用 OR 运算符”

POST YourIndex/YourType/_search
{
    "query": {
        "query_string": {
           "query": "nite OR out*"
        }
    }     
}
于 2015-08-19T11:16:11.010 回答