python调用elasticsearch(Python-ElasticSearch搜索查询的讲解)
类别:脚本大全 浏览量:236
时间:2022-01-21 00:20:22 python调用elasticsearch
Python-ElasticSearch搜索查询的讲解Elasticsearch 是一个开源的搜索引擎,建立在一个全文搜索引擎库 Apache Lucene™ 基础之上。 Lucene 可能是目前存在的,不论开源还是私有的,拥有最先进,高性能和全功能搜索引擎功能的库。但是 Lucene 仅仅只是一个库。为了利用它,你需要编写 Java 程序,并在你的 java 程序里面直接集成 Lucene 包。 更坏的情况是,你需要对信息检索有一定程度的理解才能明白 Lucene 是怎么工作的。Lucene 是 很 复杂的。
在上一篇文章中介绍了ElasticSearch的简单使用,接下来记录一下ElasticSearch的查询:
查询所有数据
|
# 搜索所有数据 es.search(index = "my_index" ,doc_type = "test_type" ) # 或者 body = { "query" :{ "match_all" :{} } } es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
term与terms
|
# term body = { "query" :{ "term" :{ "name" : "python" } } } # 查询name="python"的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) # terms body = { "query" :{ "terms" :{ "name" :[ "python" , "android" ] } } } # 搜索出name="python"或name="android"的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
match与multi_match
|
# match:匹配name包含python关键字的数据 body = { "query" :{ "match" :{ "name" : "python" } } } # 查询name包含python关键字的数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) # multi_match:在name和addr里匹配包含深圳关键字的数据 body = { "query" :{ "multi_match" :{ "query" : "深圳" , "fields" :[ "name" , "addr" ] } } } # 查询name和addr包含"深圳"关键字的数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
ids
|
body = { "query" :{ "ids" :{ "type" : "test_type" , "values" :[ "1" , "2" ] } } } # 搜索出id为1或2d的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
复合查询bool
bool有3类查询关系,must(都满足),should(其中一个满足),must_not(都不满足)
|
body = { "query" :{ "bool" :{ "must" :[ { "term" :{ "name" : "python" } }, { "term" :{ "age" : 18 } } ] } } } # 获取name="python"并且age=18的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
切片式查询
|
body = { "query" :{ "match_all" :{} } "from" : 2 # 从第二条数据开始 "size" : 4 # 获取4条数据 } # 从第2条数据开始,获取4条数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
范围查询
|
body = { "query" :{ "range" :{ "age" :{ "gte" : 18 , # >=18 "lte" : 30 # <=30 } } } } # 查询18<=age<=30的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
前缀查询
|
body = { "query" :{ "prefix" :{ "name" : "p" } } } # 查询前缀为"赵"的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
通配符查询
|
body = { "query" :{ "wildcard" :{ "name" : "*id" } } } # 查询name以id为后缀的所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
排序
|
body = { "query" :{ "match_all" :{} } "sort" :{ "age" :{ # 根据age字段升序排序 "order" : "asc" # asc升序,desc降序 } } } |
filter_path
响应过滤
|
# 只需要获取_id数据,多个条件用逗号隔开 es.search(index = "my_index" ,doc_type = "test_type" ,filter_path = [ "hits.hits._id" ]) # 获取所有数据 es.search(index = "my_index" ,doc_type = "test_type" ,filter_path = [ "hits.hits._*" ]) |
count
执行查询并获取该查询的匹配数
|
# 获取数据量 es.count(index = "my_index" ,doc_type = "test_type" ) |
度量类聚合
- 获取最小值
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "min_age" :{ # 最小值的key "min" :{ # 最小 "field" : "age" # 查询"age"的最小值 } } } } # 搜索所有数据,并获取age最小的值 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
- 获取最大值
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "max_age" :{ # 最大值的key "max" :{ # 最大 "field" : "age" # 查询"age"的最大值 } } } } # 搜索所有数据,并获取age最大的值 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
- 获取和
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "sum_age" :{ # 和的key "sum" :{ # 和 "field" : "age" # 获取所有age的和 } } } } # 搜索所有数据,并获取所有age的和 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
- 获取平均值
|
body = { "query" :{ "match_all" :{} }, "aggs" :{ # 聚合查询 "avg_age" :{ # 平均值的key "sum" :{ # 平均值 "field" : "age" # 获取所有age的平均值 } } } } # 搜索所有数据,获取所有age的平均值 es.search(index = "my_index" ,doc_type = "test_type" ,body = body) |
更多的搜索用法:
https://elasticsearch-py.readthedocs.io/en/master/api.html
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对开心学习网的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/y472360651/article/details/76652021
您可能感兴趣
- sql查询union怎么用(SQL语句之Union和Union All的用法)
- 如何查看mysql慢查询日志(MySQL慢查询如何定位详解)
- django框架详解(Django如何开发简单的查询接口详解)
- mysql三种查询方式(MySQL查询学习之基础查询操作)
- 网站页面导航怎么设置css(纯CSS + 媒体查询实现网页导航效果)
- mysql 查询语法常见问题(MySQL 异常有这一篇就够了!)
- dede收录查询插件(dede:likearticle文章标签和tag标签关联错误解决方法)
- sqlserver查询自定义时间数据(SQLServer查询某个时间段购买过商品的所有用户)
- mysql复合索引会包含哪些索引(MySQL查询冗余索引和未使用过的索引操作)
- sqlserver 查询锁(sqlserver:查询锁住sql以及解锁方法)
- mysql模糊查询语句(mysql中like % %模糊查询的实现)
- php使用yield处理并发(Yii2.0框架模型多表关联查询示例)
- laravel语法有哪些(对laravel in 查询的使用方法详解)
- dedecms标签怎么用(浅析DedeCMS GBK版安装sphinx全文索引无法查询无结果的解决方法)
- laravel数据库查询(Laravel获取所有的数据库表及结构的方法)
- laravel关联模型字段冲突(浅谈laravel中的关联查询with的问题)
- 七夕取消是什么梗(七夕取消是什么梗)
- 这竟然是捏出来的 20种橡皮泥玩法让你轻松hold住魔娃(这竟然是捏出来的)
- 自制橡皮泥(自制橡皮泥)
- 还在卖 禁药西布曲明网上论斤卖(还在卖禁药西布曲明网上论斤卖)
- 微商在朋友圈热卖的 DL减肥咖啡 含违禁药物,你还敢买吗(微商在朋友圈热卖的)
- 八一节,说说中国女兵(八一节说说中国女兵)
热门推荐
- python的os模块操作(Python OS模块实例详解)
- 还原NuGet程序包
- css浮动布局和盒子(css 盒模型 文档流 几种清除浮动的方法实例详解)
- sqlserver基础数据类型(SQL Server中T-SQL 数据类型转换详解)
- ASP.NET中Web.config文件的配置
- python对字典值排序(Python实现字典按key或者value进行排序操作示例sorted)
- dedecms如何使用标签(dedecms 移动文章后,原来生成的HTML依然存在解决方法)
- python交互执行shell脚本(python 利用文件锁单例执行脚本的方法)
- sql server 视图操作(Sql Server 视图数据的增删改查教程)
- docker多个端口怎么分(Docker多个容器不能有相同端口号的处理方案)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9