elasticsearch学习笔i记(二十六)——Elasticsearch query DSL搜索实战

栏目: 后端 · 发布时间: 6年前

内容简介:下面先解释一下ES的GET+request body这种模式一般我们知道HTTP协议一般是不允许get请求带上request body,但是因为get更加适合描述查询数据的操作,因此还是这么用了。碰巧当前很多浏览器或是服务器也都支持GET+request body模式

下面先解释一下ES的GET+request body这种模式

一般我们知道HTTP协议一般是不允许get请求带上request body,但是因为get更加适合描述查询数据的操作,因此还是这么用了。

碰巧当前很多浏览器或是服务器也都支持GET+request body模式

如果遇到不支持的场景,也可以用POST+request body模式.

1、 一个例子让你明白什么是query DSL

GET /website/_search
{
  "query": {
    "match_all": {}
  }
}

2、query DSL的基本语法

GET /{index}/_search
{
    "各种条件"
}

示例:

GET /website/_search
{
  "query": {
    "match": {
      "title": "article"
    }
  }
}
{
  "took" : 3,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 3,
      "relation" : "eq"
    },
    "max_score" : 0.13353139,
    "hits" : [
      {
        "_index" : "website",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 0.13353139,
        "_source" : {
          "post_date" : "2017-01-01",
          "title" : "my first article",
          "content" : "this is my first article in this website",
          "author_id" : 11400
        }
      },
      {
        "_index" : "website",
        "_type" : "_doc",
        "_id" : "2",
        "_score" : 0.13353139,
        "_source" : {
          "post_date" : "2017-01-02",
          "title" : "my second article",
          "content" : "this is my second article in this website",
          "author_id" : 11400
        }
      },
      {
        "_index" : "website",
        "_type" : "_doc",
        "_id" : "3",
        "_score" : 0.13353139,
        "_source" : {
          "post_date" : "2017-01-03",
          "title" : "my third article",
          "content" : "this is my third article in this website",
          "author_id" : 11400
        }
      }
    ]
  }
}

3、组合多个搜索条件

搜索需求:title必须包含first,content可以包含website也可以不包含,author_id必须不为111

GET /website/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "title": "first"
          }
        }
      ],
      "should": [
        {
          "match": {
            "content": "website"
          }
        }
      ],
      "must_not": [
        {
          "match": {
            "author_id": 111
          }
        }
      ]
    }
  }
}
{
  "took" : 21,
  "timed_out" : false,
  "_shards" : {
    "total" : 1,
    "successful" : 1,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 1,
      "relation" : "eq"
    },
    "max_score" : 1.1143606,
    "hits" : [
      {
        "_index" : "website",
        "_type" : "_doc",
        "_id" : "1",
        "_score" : 1.1143606,
        "_source" : {
          "post_date" : "2017-01-01",
          "title" : "my first article",
          "content" : "this is my first article in this website",
          "author_id" : 11400
        }
      }
    ]
  }
}

下面附上一个更复杂的组合查询,之后可以作为思考的模板:

GET /website/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "title": "first"
          }
        }
      ],
      "should": [
        {
          "match": {
            "content": "website"
          }
        },
        {
          "bool": {
            "must": [
              {
                "match": {
                  "content": "first"
                }
              }
            ],
            "must_not": [
              {
                "match": {
                  "title": "second"
                }
              }
            ]
          }
        }
      ],
      "must_not": [
        {
          "match": {
            "author_id": 111
          }
        }
      ]
    }
  }
}

以上所述就是小编给大家介绍的《elasticsearch学习笔i记(二十六)——Elasticsearch query DSL搜索实战》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

JSP应用开发技术

JSP应用开发技术

柳永坡 / 人民邮电出版社 / 2005-9 / 52.00元

本书全面系统地介绍了JSP应用开发技术,包括JSP预备知识和环境配置、JSP编程基础、JSP应用开发进阶、在JSP中使用数据库、Servlet技术、标签库和表达式语言、Web编程模式和应用框架等几个方面的内容。本书不但由浅入深地介绍了JSP程序设计的原理、方法和技术,还提供了大量的JSP应用开发实例,给出了相应的实用技巧、操作步骤及优化思路。 本书着重于JSP技术的应用性和可操作性,......一起来看看 《JSP应用开发技术》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

在线进制转换器
在线进制转换器

各进制数互转换器

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具