Elasticsearch 全文检索,高亮搜索,相似度排序优化
- 查询方式一:
POST index_name/_search
{
"from":0,
"size":10,
"query":{
"bool":{
"must": [
{
"term": {
"columnClassification": {
"value": "新闻"
}
}
},
{
"bool": {
"should":[
{
"multi_match":{
"query":"国家已规划福州至台北交通建设",
"fields":[
"title^3.0"
],
"type":"best_fields",
"operator":"OR",
"analyzer":"ik_smart",
"slop":0,
"prefix_length":0,
"max_expansions":50,
"minimum_should_match":"90%",
"zero_terms_query":"NONE",
"auto_generate_synonyms_phrase_query":true,