模糊查询使用基于 Levenshtein 编辑距离的相似性
将在6.0中正式移除,使用匹配查询替代模糊查询
curl -X GET "localhost:9200/_search?pretty" -H 'Content-Type: application/json' -d' { "query": { "fuzzy": { "user.id": { "value": "ki" } } } } '
curl -X GET "localhost:9200/_search?pretty" -H 'Content-Type: application/json' -d' { "query": { "fuzzy": { "user.id": { "value": "ki", "fuzziness": "AUTO", "max_expansions": 50, "prefix_length": 0, "transpositions": true, "rewrite": "constant_score" } } } } '
https://www.elastic.co/guide/en/elasticsearch/reference/7.11/query-dsl-fuzzy-query.html