ES笔记

2022/9/2 23:24:59

本文主要是介绍ES笔记,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考:https://www.jianshu.com/p/b2c0192e6267


举例:初始化数据

PUT mmm/_doc/1
{
  "name": "北京",
  "ct": "2022-08-01"
}

PUT mmm/_doc/2
{
  "name": "上海",
  "ct": "2022-08-10"
}

PUT mmm/_doc/3
{
  "name": "广州",
  "ct": "2022-08-20"
}

must和should同时存在同一层时,由于should只为打分使用,minimum_should_match默认是0,所以实际上should是不生效的,有两种解决办法,

  1. 同一层加上minimum_should_match = 1,如
GET /mmm/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "range": {
            "ct": {
              "gte": "2022-08-09"
            }
          }
        }
      ],
      "should": [
        {
          "term": {
            "name.keyword": {
              "value": "北京"
            }
          }
        },
        {
          "term": {
            "name.keyword": {
              "value": "上海"
            }
          }
        }
      ],
      "minimum_should_match": 1
    }
  }
}
  1. 将should外面再套一层bool,如:
GET /mmm/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "range": {
            "ct": {
              "gte": "2022-08-09"
            }
          }
        },
        {
          "bool": {
            "should": [
              {
                "term": {
                  "name.keyword": {
                    "value": "北京"
                  }
                }
              },
              {
                "term": {
                  "name.keyword": {
                    "value": "上海"
                  }
                }
              }
            ]
          }
        }
      ]
    }
  }
}

term, terms查询
term:select * from xxx where id = ?
terms: select * from xxx where id = ? or id = ? or id = ?,也相当于select * from xxx where id in (?, ?, ?)



这篇关于ES笔记的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程