Min_score Elasticsearch 中布尔查询中的"must"



有没有一种方法可以将最低分数应用于elasticsearch中bool查询中的must子句。

我希望能够做这样的事情:

{
  "query": {
     "bool": {
        "must": [
            {
              "match": {
                 "name": {
                    "query":"A Name",
                    "min_score": 0.3
                 }
               }
            },
            {
              "match": {
                 "address": {
                    "query":"1 Somewhere Street, Somewhereset, UK",
                    "min_score": 0.3
                 }
               }
            }
        ]
    }
  }
}

这将要求名称查询与得分>0.3匹配,地址查询与得分>0.3匹配才能返回文档。这是为了阻止真正好的名称匹配被返回,尽管地址匹配很糟糕(例如,只匹配1),反之亦然。

我目前使用的是Elasticsearch 1.5,但我过去也希望它适用于2.3。

试试这个,让我知道它是否有效:

{
  "query": {
    "bool": {
      "must": [
        {
          "function_score": {
            "query": {
              "match": {
                "name": {
                  "query": "A Name"
                }
              }
            },
            "min_score": 0.3
          }
        },
        {
          "function_score": {
            "query": {
              "match": {
                "address": {
                  "query": "1 Somewhere Street, Somewhereset, UK"
                }
              }
            },
            "min_score": 0.3
          }
        }
      ]
    }
  }
}

查询的分数似乎是根据所有字段的组合计算得出的。您可以在函数查询中使用script_score更改分数的计算方式:https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#function-脚本得分

然而,您似乎不太可能单独访问每个字段结果的分数。

相关内容

  • 没有找到相关文章

最新更新