Elasticsearch忽略查询字符串

时间:2015-03-03 11:28:08

标签: php laravel elasticsearch

我正在使用Elasticsearch查询我的数据库中的作业。以下是我正在使用的查询。

查询应询问以下内容:
-Query匹配文本,名称或描述
-Job必须包含所有给定的类别和细分

然而,我遇到的问题是,当我提出查询,并添加细分和类别。该查询被忽略,请求返回具有给定段和类别的所有作业。

{
  "index": "jobs",
  "type": "job",
  "body": {
    "query": {
      "filtered": {
        "query": {
          "bool": {
            "must": [
              {
                "match": {
                  "categories": "23"
                }
              },
              {
                "match": {
                  "segments": "10"
                }
              }
            ],
            "should": [
              {
                "match": {
                  "name": "php"
                }
              },
              {
                "match": {
                  "text": "php"
                }
              },
              {
                "match": {
                  "description": "php"
                }
              }
            ]
          }
        },
        "filter": {
          "nested": {
            "path": "networks",
            "filter": {
              "bool": {
                "must": [
                  {
                    "term": {
                      "networks.id": 1
                    }
                  },
                  {
                    "term": {
                      "networks.status.raw": "PRODUCTION"
                    }
                  },
                  {
                    "range": {
                      "networks.start": {
                        "lte": "now"
                      }
                    }
                  },
                  {
                    "range": {
                      "networks.end": {
                        "gte": "now"
                      }
                    }
                  }
                ]
              }
            }
          }
        }
      }
    },
    "aggs": {
      "categories": {
        "terms": {
          "field": "categories"
        }
      },
      "segments": {
        "terms": {
          "field": "segments"
        }
      }
    }
  }
}

作为旁注,我正在使用laravel和elasticsearch的php实现,以上是查询数组的json_encoded表示。 (类型可能是杂乱的)

1 个答案:

答案 0 :(得分:0)

好的,我自己想通了:

使用must子句中的multi_match替换bool查询中的should参数将解决我的问题。

{
  "index": "jobs",
  "type": "job",
  "body": {
    "query": {
      "filtered": {
        "query": {
          "bool": {
            "must": [
              {
                "multi_match": {
                  "query": "php",
                  "fields": [
                    "name",
                    "text",
                    "description"
                  ]
                }
              },
              {
                "match": {
                  "segments": "10"
                }
              }
            ]
          }
        },

结果非常明显,因为它在文档中已经注明:

  

子句(查询)应出现在匹配的文档中。 在一个   没有must子句的布尔查询,一个或多个should子句必须   匹配文档。要匹配的最小条数可以是   使用minimum_should_match参数设置。

http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-bool-query.html#query-dsl-bool-query