IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> elasticsearch中DSL之Bool query -> 正文阅读

[大数据]elasticsearch中DSL之Bool query

bool query

布尔查询是一个复合查询,由各个bool类型的子查询组成。

  • must :返回文档必须满足该条件,且提供分数
  • filter :返回文档必须满足该条件,但是不需要提供分数
  • should :返回文档可以满足0个或多个条件,且提供分数
  • must_not : 返回文档必须不满足条件,但是不需要提供分数

1.must子语句

且逻辑

GET myindex/_search
{
    "query": {
        "bool": {
            "must" :{
                "term" :{
                    "name" : "mahuateng"
                }
            }
        }
    }
}

GET myindex/_search
{
    "query": {
        "bool": {
            "must" : [
                {
                    "term" :{
                        "name" : "mahuateng"
                    }
                }
            ]
        }
    }
}

返回结果:(有具体得分)

"hits": [
    {
       "_index": "myindex",
       "_type": "mytype",
       "_id": "2",
       "_score": 0.6931472,
       "_source": {
          "name": "mahuateng",
          "age": "40",
          "addr": "zhongguo guangdong shenzhen",
          "city": "shenzhen"
       }
    }
 ]

2.filter子语句

且逻辑

GET myindex/_search
{
    "query": {
        "bool": {
            "filter" :{
                "term" :{
                    "name" : "mahuateng"
                }
            }
        }
    }
}

GET myindex/_search
{
    "query": {
        "bool": {
            "filter" : [
                {
                    "term" :{
                        "name" : "mahuateng"
                    }
                }
            ]
        }
    }
}

返回结果:(等分为0)

"hits": [
    {
        "_index": "myindex",
        "_type": "mytype",
        "_id": "2",
        "_score": 0,
        "_source": {
           "name": "mahuateng",
           "age": "40",
           "addr": "zhongguo guangdong shenzhen",
           "city": "shenzhen"
        }
     }
  ]
}

3.must_not子语句

非逻辑

GET myindex/_search
{
    "query": {
        "bool": {
            "must_not" :{
                "term" :{
                    "name" : "mahuateng"
                }
            }
        }
    }
}

GET myindex/_search
{
    "query": {
        "bool": {
            "must_not" : [
                {
                    "term" :{
                        "name" : "mahuateng"
                    }
                }
            ]
        }
    }
}

返回结果:(得分都是1)

   "hits": {
      "total": 1,
      "max_score": 1,
      "hits": [
         {
            "_index": "myindex",
            "_type": "mytype",
            "_id": "3",
            "_score": 1,
            "_source": {
               "name": "xiaoyu",
               "age": "30",
               "addr": "中国安徽亳州",
               "city": "shenzhen"
            }
         }
      ]
   }

4.should子语句

或逻辑(or)

GET myindex/_search
{
    "query": {
        "bool": {
            
            "should": [
               {
                   "range": {
                      "age": {
                         "gt": "90",
                         "lt": "100"
                      }
                   }
               },
               {
                   "range": {
                      "age": {
                         "lt": "20"
                      }
                   }
               }
            ],
            "minimum_should_match": 0
        }
    }
}

minimum_should_match控制文档最小满足几个条件。

综合例子

GET myindex/_search
{
    "query": {
        "bool": {
            "must": [
               {
                   "term": {
                      "name": {
                         "value": "mahuateng"
                      }
                   }
               }
            ], 
            "filter" : {
                "match": {
                   "addr": "zhongguo"
                }
            },
            "should": [
               {
                   "range": {
                      "age": {
                         "gt": "90"
                      }
                   }
               },
               {
                   "range": {
                      "age": {
                         "lt": "10"
                      }
                   }
               }
            ],
            "minimum_should_match": 0
        }
    }
}

返回结果:

"hits": [
         {
            "_index": "myindex",
            "_type": "mytype",
            "_id": "2",
            "_score": 0.6931472,
            "_source": {
               "name": "mahuateng",
               "age": "40",
               "addr": "zhongguo guangdong shenzhen",
               "city": "shenzhen"
            }
         }
      ]

注意上面返回文档并不满足should逻辑,但是依然返回。为了避免这种情况出现可以设置minimum_should_match为1。这样可以得到符合其中一个年龄的用户了,本例子就是没有结果返回。

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2021-08-12 16:40:01  更:2021-08-12 16:42:06 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 10:18:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码