0

我们在索引中搜索以下字段:

  • 个人名称(字符串)
  • 组织名称(字符串)
  • 个人资料(字符串)
  • 位置(字符串)
  • 全国(布尔)

如果用户在“汉密尔顿”中搜索“验光师”,并且我们索引中的验光师已将自己列为“全国性”(但不是专门在汉密尔顿),则期望的行为是验光师会出现在汉密尔顿结果中 - 实际上忽略位置要求。

我们目前正在运行一个multi_match查询,下面是一个示例。

{
    "query": {
        "filtered" : {
            "query" : {
                "multi_match": {
                    "query": "optometrist",
                    "zero_terms_query": "all",
                    "operator": "and",
                    "fields": [
                        "individual_name^1.2",
                        "organisation_name^1.5",
                        "profile",
                        "accreditations"
                    ]
                }
            },
            "filter": {
                "and": [{
                    "term": {
                        "locations" : "hamilton"
                    }
                }],
            }
        }
    }
}

如何对此进行修改,以便"nationwide": "yes"为该查询返回带有的文档,而不管位置如何?

我已经尝试在.or下进行查询and,但当然忽略了multi_match.

4

1 回答 1

2

我认为这会给你想要的结果:

{
    "query": {
        "filtered" : {
            "query" : {
                "multi_match": {
                    "query": "optometrist",
                    "zero_terms_query": "all",
                    "operator": "and",
                    "fields": [
                        "individual_name^1.2",
                        "organisation_name^1.5",
                        "profile",
                        "accreditations"
                    ]
                }
            },
            "filter": {
                "or": [
                        {"term": {"locations" : "hamilton"}},
                        {'term' : {'nationwide' : 'yes'}}        
                 ],
            }
        }
    }
}
于 2013-11-08T07:37:05.583 回答