elasticsearch中filter

https://elasticsearch.cn/question/4305

URL地址:http://192.168.2.143:9200/poems/poem/_search/

方法:POST

{

  "query": {
    "bool": {
      "must": [
        {
          "match_all": {}
        }
      ],
      "must_not": [],
      "should": [
        {
          "match": {
            "author": "李白"
          }
        }
      ],
      "filter": [
        {
          "match": {
            "title": "白帝城"
          }
        },
        {
          "range": {
            "cat_id": {
              "gte": 1,
              "lte": 2
            }
          }
        }
      ]
    }
  },
  "from": 0,
  "size": 10,
  "sort": [],
  "aggs": {}

}

demo

{
  "query": {
    "bool": {
      "filter": [
        {
          "term": {
            "name": "kevin"
          }
        },
        {
          "range": {
            "age": {
              "gte": 20,
              "lte": 30
            }
          }
        }
      ]
    }
  }
}

    A+
发布日期:2020年05月26日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: