美文网首页
es高级用法

es高级用法

作者: ant_1024 | 来源:发表于2018-09-04 10:26 被阅读119次

    常用查询

    全文本查询 针对文本数据类型

    字段基本查询针对结构化数据,如数字,日志期等

    模糊匹配

    post
    http://47.104.100.24:9200/book/novel/_search

    {
    "query":{
    "match":{
    "title":"的黑"
    }
    }
    }

    会匹配所有包含“的”,“黑”的内容

    单词匹配
    {
    "query":{
    "match_phrase":{
    "title":"大师傅"
    }
    }
    }

    多字段匹配
    {
    "query":{
    "multi_match":{
    "query":"核",
    "fields":["author","title"]
    }
    }
    }

    多内容匹配
    {
    "query":{
    "query_string":{
    "query":"(大师傅 ADN 芬法) OR 阿黑"
    }
    }
    }

    查看指定的数据
    书籍字数是1000
    {
    "query":{
    "term":{
    "word_count":1000
    }
    }
    }

    查看指定范围的数据
    {
    "query":{
    "range":{
    "word_count":{
    "gte":1000,
    "lte":2000
    }
    }
    }
    }

    过滤查询
    filter
    {
    "query":{
    "bool":{
    "filter":{
    term:{
    "word_count":1000
    }
    }
    }
    }
    }

    固定分数查询

    {
    "query":{
    "constant_socore":{
    "filter":{
    "match":{
    "title":"ElasticSearch"
    }
    },
    "boost":2
    }
    }
    }

    或的关系
    {
    "query":{
    "bool":{
    "should":[
    {
    "match":{
    "author":"瓦力"
    }
    },
    {
    “match”:{
    "title":"ElasticSearch"
    }
    }
    ]
    }
    }
    }

    必须的
    {
    "query":{
    "bool":{
    "must":[
    {
    "match":{
    "author":"瓦力"
    }
    },
    {
    “match”:{
    "title":"ElasticSearch"
    }
    }
    ]
    }
    }
    }

    组合查询
    {
    "query":{
    "bool":{
    "must":[
    {
    "match":{
    "author":"瓦力"
    }
    },
    {
    “match”:{
    "title":"ElasticSearch"
    }
    }
    ],
    "filter":[{
    term:{
    "word_count":1000
    }
    } ]

        }
    }
    

    }

    {
    "query":{
    "bool":{
    "must_not":[
    {
    "match":{
    "author":"瓦力"
    }
    },
    {
    “match”:{
    "title":"ElasticSearch"
    }
    }
    ],
    "filter":[{
    term:{
    "word_count":1000
    }
    } ]

        }
    }
    

    }

    相关文章

      网友评论

          本文标题:es高级用法

          本文链接:https://www.haomeiwen.com/subject/ahyiwftx.html