Elasticsearch return searched word

前端 未结 2 739
清酒与你
清酒与你 2021-01-03 11:09

I am using fuzzy and want elasticsearch to return the searched word not just the hit. When i am searching for the word dogo and my fuzzy search fi

2条回答
  •  爱一瞬间的悲伤
    2021-01-03 11:25

    Named queries is the right choice to understand your query name in results. You could also try suggestion if you want to know the possible corrected terms for your query term.

    {
      "query": {
        "bool": {
        "should": [
            {
              "fuzzy": {
                      "title": "dogo"
                          }
    
              },
            {
              "fuzzy": {
                      "title": "fox"
                          }
              }
            ]
        }
    
      },
      "highlight" : {
          "fields" : {
              "title":{
                  "pre_tags": [
                    "===>"
                  ],
                  "post_tags": [
                    "<==="
                  ],
                  "fragment_size": 200,
                  "number_of_fragments": 100
              }
          }
       }  ,
     "suggest" : {
        "title_suggestion" : {
          "text" : "fox dogo",
          "term" : {
            "field" : "title"
          }
        }
      }
    }
    

提交回复
热议问题