elasticsearch中range查询高亮

http://192.168.2.143:9200/blogs/blog/_search/

{

  "query": {
    "bool": {
      "must": {
        "bool": {
          "should": [
            {
              "match": {
                "title": "mysql"
              }
            },
            {
              "match": {
                "content": "版本"
              }
            }
          ]
        },
        "must": [
          {
            "range": {
              "id": {
                "gte": "100",
                "lte": "300"
              }
            }
          }
        ]
      }
    },
    "highlight": {
      "fields": {
        "id": {},
        "title": {},
        "content": {}
      }
    }
  },
  "from": 0,
  "size": 10
}

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

发表评论

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