博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Elasticsearch使用filter进行匹配关系and,or,not,range查询
阅读量:5367 次
发布时间:2019-06-15

本文共 4571 字,大约阅读时间需要 15 分钟。

 

RESTful接口URL的格式:http://localhost:9200/
/
/[
]其中index、type是必须提供的。id是可选的,不提供es会自动生成。index、type将信息进行分层,利于管理。index可以理解为数据库;type理解为数据表;id相当于数据库表中记录的主键,是唯一的。#向store索引中添加一些书籍curl -XPUT 'http://172.16.0.14:9200/store/books/1' -d '{ "title": "Elasticsearch: The Definitive Guide", "name" : { "first" : "Zachary", "last" : "Tong" }, "publish_date":"2015-02-06", "price":"49.99"}'#通过浏览器查询http://172.16.0.14:9200/store/books/1#在linux中通过curl的方式查询curl -XGET 'http://172.16.0.14:9200/store/books/1'#在添加一个书的信息curl -XPUT 'http://172.16.0.14:9200/store/books/2' -d '{ "title": "Elasticsearch Blueprints", "name" : { "first" : "Vineeth", "last" : "Mohan" }, "publish_date":"2015-06-06", "price":"35.99"}'# 通过ID获得文档信息curl -XGET 'http://172.16.0.14:9200/bookstore/books/1'#在浏览器中查看http://172.16.0.14:9200/bookstore/books/1# 通过_source获取指定的字段curl -XGET 'http://172.16.0.14:9200/store/books/1?_source=title'curl -XGET 'http://172.16.0.14:9200/store/books/1?_source=title,price'curl -XGET 'http://172.16.0.14:9200/store/books/1?_source'#可以通过覆盖的方式更新curl -XPUT 'http://172.16.0.14:9200/store/books/1' -d '{ "title": "Elasticsearch: The Definitive Guide", "name" : { "first" : "Zachary", "last" : "Tong" }, "publish_date":"2016-02-06", "price":"99.99"}'# 或者通过 _update API的方式单独更新你想要更新的curl -XPOST 'http://172.16.0.14:9200/store/books/1/_update' -d '{ "doc": { "price" : 88.88 }}'curl -XGET 'http://172.16.0.14:9200/store/books/1' #删除一个文档curl -XDELETE 'http://172.16.0.14:9200/store/books/1'# 最简单filter查询# SELECT * FROM books WHERE price = 35.99# filtered 查询价格是35.99的curl -XGET 'http://172.16.0.14:9200/store/books/_search' -d '{ "query" : { "filtered" : { "query" : { "match_all" : {} }, "filter" : { "term" : { "price" : 35.99 } } } }}'#指定多个值curl -XGET 'http://172.16.0.14:9200/store/books/_search' -d '{ "query" : { "filtered" : { "filter" : { "terms" : { "price" : [35.99, 99.99] } } } }}'# SELECT * FROM books WHERE publish_date = "2015-02-06"curl -XGET 'http://172.16.0.14:9200/bookstore/books/_search' -d '{ "query" : { "filtered" : { "filter" : { "term" : { "publish_date" : "2015-02-06" } } } }}'# bool过滤查询,可以做组合过滤查询# SELECT * FROM books WHERE (price = 35.99 OR price = 99.99) AND (publish_date != "2016-02-06")# 类似的,Elasticsearch也有 and, or, not这样的组合条件的查询方式# 格式如下:# {# "bool" : {# "must" : [],# "should" : [],# "must_not" : [],# }# }## must: 条件必须满足,相当于 and# should: 条件可以满足也可以不满足,相当于 or# must_not: 条件不需要满足,相当于 notcurl -XGET 'http://172.16.0.14:9200/bookstore/books/_search' -d '{ "query" : { "filtered" : { "filter" : { "bool" : { "should" : [ { "term" : {"price" : 35.99}}, { "term" : {"price" : 99.99}} ], "must_not" : { "term" : {"publish_date" : "2016-02-06"} } } } } }}'# 嵌套查询# SELECT * FROM books WHERE price = 35.99 OR ( publish_date = "2016-02-06" AND price = 99.99 )curl -XGET 'http://172.16.0.14:9200/bookstore/books/_search' -d '{ "query" : { "filtered" : { "filter" : { "bool" : { "should" : [ { "term" : {"price" : 35.99}}, { "bool" : { "must" : [ {
"term" : {"publish_date" : "2016-02-06"}}, {
"term" : {"price" : 99.99}} ] }} ] } } } }}'# range范围过滤# SELECT * FROM books WHERE price >= 20 AND price < 100# gt : > 大于# lt : < 小于# gte : >= 大于等于# lte : <= 小于等于curl -XGET 'http://172.16.0.14:9200/store/books/_search' -d '{ "query" : { "filtered" : { "filter" : { "range" : { "price" : { "gt" : 20.0, "lt" : 100 } } } } }}'# 另外一种 and, or, not查询# 没有bool, 直接使用and , or , not# 注意: 不带bool的这种查询不能利用缓存# 查询价格既是35.99,publish_date又为"2015-02-06"的结果curl -XGET 'http://172.16.0.14:9200/bookstore/books/_search' -d '{ "query": { "filtered": { "filter": { "and": [ { "term": { "price":59.99 } }, { "term": { "publish_date":"2015-02-06" } } ] }, "query": { "match_all": {} } } }}'

 

转载于:https://www.cnblogs.com/DreamDrive/p/6819449.html

你可能感兴趣的文章
设计模式学习的好方法
查看>>
感谢Leslie Ma
查看>>
几种排序方法
查看>>
查看数据库各表的信息
查看>>
第一阶段测试题
查看>>
第二轮冲刺第五天
查看>>
图片压缩
查看>>
Hadoop-2.6.5安装
查看>>
ES6思维导图
查看>>
第四周作业
查看>>
20151121
查看>>
线段重叠 (思维好题)
查看>>
Codeforces Round #413 C. Fountains (线段树的创建、查询、更新)
查看>>
SBuild 0.1.5 发布,基于 Scala 的构建系统
查看>>
WordPress 3.5 RC3 发布
查看>>
DOM扩展札记
查看>>
primitive assembly
查看>>
浅谈localStorage的用法
查看>>
Ad Exchange基本接口和功能
查看>>
Angular ui-router的常用配置参数详解
查看>>