Elasticsearch Reference [6.2] » Query DSL

参考官方文档 :https://www.elastic.co/guide/en/elasticsearch/reference/current/query-filter-context.html

一、组合查询 Compound queries

  1. Constant Score Query 指定_score分数查询
GET /_search
{
"query": {
"constant_score" : {
"filter" : {
"term" : { "user" : "kimchy"}
},
"boost" : 1.2
}
}
}
  1. Bool Query 布尔值查询

must:查询的条件必须在匹配的文档中,并计算相似度得分

filter:必须满足条件,不会计算相似度得分

should:满足子条件的一个或者多个,满足的格式可以通过"minimum_should_match" : 1设置,类似 OR (如果查询中包filter则至少满足一个should)

must_not:返回的文档必须不满足条件,类似 NOT

tips : 日期格式在添加文档和搜索的时候加上T,字符串不区分大小写 如pek

GET /stu/_search
{
"query": {
"bool": {
"must": [
{ "match": { "address":"上海市 保德路 闸北区"}}
],
"filter": [
{"term":{ "id": 11 }},
{"term":{ "city": "pek" }},
{"range":{"regdate": {"gte": "2018-03-03T15:33:32","lte":"2018-03-03T15:33:33"}}}
],
"should":[
{"term":{ "score": 80.8 }},
{"term":{ "score": 80.0 }}
],
"must_not":[{
"term" : { "age" : 30 }
}],
"minimum_should_match" : 1,
"boost" : 1.0
}
}
}

二、查询上下文

Query Context:文档和查询条件的匹配度,出了决定是否与文档匹配外,还会计算查询条件和文档的匹配度_score

GET /_search
{
"query" : {
"term" : { "user" : "kimchy" }
}
}

三、过滤上下文

Filter context: 精确搜索文档和查询是否匹配,不会去计算匹配度,主要用于过滤结构化数据.

经常使用的过滤器会被elasticsearch自动缓存,以提高查询效率

示例:title中包含search、content中包含elasticsearch 且 status="published" & publish_date >="2015-01-01"

filter里的term、range

GET /_search
{
"query": {
"bool": {
"must": [
{ "match": { "title": "Search"}},
{ "match": { "content": "Elasticsearch" }}
],
"filter": [
{ "term": { "status": "published" }},
{ "range": { "publish_date": { "gte": "2015-01-01" }}}
]
}
}
}

四、查询所有

查询所有_score的文档,(注:boost的默认值是 1.0)

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

查询_score=1.2的所有文档

GET /_search
{
"query": {
"match_all": { "boost" : 1.2 }
}
}

五、全文查询

1.match query

query:查询字段message中包含 " this is test " , 注意 "to be or not to be" 属于停顿词,过滤器默认会把remove调,设置zero_terms_query:"all"启用

另operator/zero_terms_query非必填参数,更详细内容查看match query官方文档

GET /_search
{
"query": {
"match" : {
"message" : {
"query" : "to be or not to be,this is test",
"operator" : "and",
"zero_terms_query": "all"
}
}
}
}

2.Match Phrase Query

match_phrase从分析文本"this is a test"中创建一组词去查询,analyzer分词器也可以使用ik等中文分词器

GET /_search
{
"query": {
"match_phrase" : {
"message" : {
"query" : "this is a test",
"analyzer" : "standard"
}
}
}
}

3.Match Phrase Prefix Query

match_phrase_prefix与match_phrase类似,只是它允许在文本中的最后一个词的前缀匹配

GET /_search
{
"query": {
"match_phrase_prefix" : {
"message" : "quick brown f"
}
}
}

4.Multi Match Query

multi_match匹配查询上以允许多字段查询(subject/message字段):

GET /_search
{
"query": {
"multi_match" : {
"query": "this is a test",
"fields": [ "subject", "message" ]
}
}
}

5.Common Terms Query

common:停顿词配置相关如 " the to be "等

6.Query String Query

query_string:没理解看官方文档

7.Simple Query String Query

simple_query_string: 与query_string查询不同的是,simple_query_string查询永远不会抛出异常,并放弃查询的无效部分

GET /_search
{
"query": {
"simple_query_string" : {
"query": "\"fried eggs\" +(eggplant | potato) -frittata",
"fields": ["title^5", "body"],
"default_operator": "and"
}
}
}

elasticsearch入门使用(三) Query DSL的更多相关文章

  1. Elasticsearch入门教程(三):Elasticsearch索引&映射

    原文:Elasticsearch入门教程(三):Elasticsearch索引&映射 版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明. 本文 ...

  2. ElasticSearch入门 第三篇:索引

    这是ElasticSearch 2.4 版本系列的第三篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 E ...

  3. ElasticSearch入门 第六篇:复合数据类型——数组,对象和嵌套

    这是ElasticSearch 2.4 版本系列的第六篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 E ...

  4. ElasticSearch入门 第九篇:实现正则表达式查询的思路

    这是ElasticSearch 2.4 版本系列的第九篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 E ...

  5. ElasticSearch入门 第五篇:使用C#查询文档

    这是ElasticSearch 2.4 版本系列的第五篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 E ...

  6. ElasticSearch查询 第三篇:词条查询

    <ElasticSearch查询>目录导航: ElasticSearch查询 第一篇:搜索API ElasticSearch查询 第二篇:文档更新 ElasticSearch查询 第三篇: ...

  7. ElasticSearch入门 第四篇:使用C#添加和更新文档

    这是ElasticSearch 2.4 版本系列的第四篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 E ...

  8. ElasticSearch入门点滴

    这是Elasticsearch-6.2.4 版本系列的第一篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 ...

  9. ElasticSearch入门 第二篇:集群配置

    这是ElasticSearch 2.4 版本系列的第二篇: ElasticSearch入门 第一篇:Windows下安装ElasticSearch ElasticSearch入门 第二篇:集群配置 E ...

随机推荐

  1. softmax_loss.cu 和 softmax_loss.cpp源码

    #include <algorithm> #include <cfloat> #include <vector> #include "caffe/laye ...

  2. CPP-基础:windows api 多线程---互斥量、信号量、临界值、事件区别

    http://blog.csdn.net/wangsifu2009/article/details/6728155 四种进程或线程同步互斥的控制方法:1.临界区:通过对多线程的串行化来访问公共资源或一 ...

  3. vue 动态合并单元格、并添加小计合计功能

    1.效果图 2.后台返回数据格式(平铺式) 3.后台返回数据后,整理所需要展示的属性存储到(items)数组内 var obj = { "id": curItems[i].id, ...

  4. linux——nmap端口扫描命令

    先安装 nmap :apt-get install nmap 端口扫描命令nmap -sS 172.16.55.100nmap -Pn 172.16.55.100第一组渗透测试指令,用于情报收集. 要 ...

  5. Linux C++/C开发所必需的一系列工具

    系统平台下的开发工具.开发环境各有不同.Linux C++/C开发所必需的一系列工具: 1. vi(vim)文本编辑器一个UNIX世界标准的文本编辑器,简约而强大,不论作为开发人员还是系统管理员,熟练 ...

  6. prototype中的ajax异步加载

    jquery前台处理: var param = {a:a}; $.post("*.do",param,function(data) { var columHtml = " ...

  7. C# 使用Epplus导出Excel [1]:导出固定列数据

    C# 使用Epplus导出Excel [1]:导出固定列数据 C# 使用Epplus导出Excel [2]:导出动态列数据 C# 使用Epplus导出Excel [3]:合并列连续相同数据 C# 使用 ...

  8. 628. Maximum Product of Three Numbers@python

    Given an integer array, find three numbers whose product is maximum and output the maximum product. ...

  9. Redis数据库(二)

    1. Redis数据库持久化 redis提供了两种数据备份方式,一种是RDB,另外一种是AOF,以下将详细介绍这两种备份策略. 面试: 1.1  配置文件详解备份方式 [root@localhost ...

  10. python爬虫基础08-selenium大全2/8-Chrome Webdriver启动选项

    Selenium笔记(2)Chrome Webdriver启动选项 本文集链接:https://www.jianshu.com/nb/25338984 在Selenium中使用不同的Webdriver ...