【发布时间】:2018-11-21 07:29:25
【问题描述】:
我使用的是弹性搜索 6.3.0 版。我想将模糊性与多匹配一起使用。但没有选择。谁能给我一个解决方案?提前致谢 查询:
{ "query": {
"bool": {
"must": [
{"function_score": {
"query": {
"multi_match": {
"query": "local",
"fields": [
"user.name^3",
"main_product"
],
"type": "phrase"
}
}
}}
],
"filter": {
"geo_distance": {
"distance": "1000km",
"user.geolocation": {
"lat": 25.55,
"lon": -84.44
}
}
}
}
} }
【问题讨论】:
标签: elasticsearch elasticsearch-6