-1

我正在使用以下匹配查询搜索弹性搜索,这并没有给我完全匹配,而是给我一些更不重要的匹配。

我正在使用弹性搜索 6.3

请在下面找到我的查询

GET /_search
{
   "must":{
      "query_string":{
         "query":"review:*test product*"
      }
   }
}

搜索结果:

“命中”:[{“_index”:“67107104”,“_type”:“_doc”,“_id”:“1”,“_score”:0.6931471,“_source”:{“title”:“testing”}} ,{“_index”:“67107104”,“_type”:“_doc”,“_id”:“2”,“_score”:0.6931471,“_source”:{“title”:“产品好”}},{“ _index”:“67107104”,“_type”:“_doc”,“_id”:“3”,“_score”:0.6931471,“_source”:{“title”:“sample”}},{“_index”:“ 67107104”,“_type”:“_doc”,“_id”:“4”,“_score”:0.7897571,“_source”:{“title”:“superr”} } ]

预期的搜索结果:

“命中”:[{“_index”:“67107104”,“_type”:“_doc”,“_id”:“1”,“_score”:0.6931471,“_source”:{“title”:“testing”}} ,{“_index”:“67107104”,“_type”:“_doc”,“_id”:“2”,“_score”:0.6931471,“_source”:{“title”:“产品好”}}]

4

2 回答 2

1

如果您没有明确定义任何映射,那么您需要将 .keyword 添加到该title字段。这使用关键字分析器而不是标准分析器(注意标题字段后的“.keyword”)。

添加带有索引数据、搜索查询和搜索结果的工作示例

指数数据:

{
  "title": "This is test product"
}
{
  "title": "test product"
}

搜索查询:

{
  "query": {
    "query_string": {
      "fields": [
        "title.keyword"
      ],
      "query": "test product"
    }
  }
}

搜索结果:

"hits": [
      {
        "_index": "67107104",
        "_type": "_doc",
        "_id": "1",
        "_score": 0.6931471,
        "_source": {
          "title": "test product"
        }
      }
    ]

使用匹配查询搜索查询:

{
  "query": {
    "match": {
      "title.keyword": "test product"
    }
  }
}

使用术语查询进行搜索查询

    {
      "query": {
        "term": {
          "title.keyword": "test product"
        }
      }
    }
于 2021-04-15T10:53:25.823 回答
0

您可以通过使用术语使用布尔查询与过滤器完全匹配。由于该术语用于精确匹配,您需要为文本字段添加关键字

{
  "query": {
    "bool": {
      "filter": [
        {
          "term": {
            "review_title.keyword": "test product"
          }
        }
      ]
    }
  }
}

于 2021-04-15T11:00:40.260 回答