我有类似;的Elasticsearch查询;
{
"query": {
"bool": {
"must": [{
"match": {
"text": {
"query": "yayla kent sitesi",
"fuzziness": "2"
}
}
},
{
"match": {
"type": {
"query": "2"
}
}
}
]
}
}
}
有记录
"text":"yaylakent sitesi"
但是我无法使用模糊搜索获得结果,它返回了许多不相关的文档。有人可以帮助我进行一个在字段中进行一个或几个空间感知搜索的查询。
"query": "yayla kent sitesi"
不应合并,
"query": "yaylakent sitesi"