Es查询的时候控制相似度

详细内容https://www.elastic.co/guide/en/elasticsearch/guide/current/match-multi-word.html#match-precision

1
2
3
4
5
6
7
8
9
10
11
GET /nm*/_search
{
"query": {
"match": {
"title": {
"query" : "李小冉晒麻雀海报:国家利益高于一",
"minimum_should_match": "90%"
}
}
}
}

Share