美文网首页
ElasticSearch:字段--精确查询||模糊查询

ElasticSearch:字段--精确查询||模糊查询

作者: 张磊_e325 | 来源:发表于2020-02-28 11:33 被阅读0次

    ES数据类型

               "ent_name": {
                    "type": "text",
                    "store": true,
                    "index": true,
                    "search_analyzer": "ik_smart",
                    "analyzer": "ik_max_word",
                    "fields": {
                        "raw": { 
                          "type":  "keyword"
                        }
                    }
                }
    

    模糊查询:

    GET ${indexName}/_doc/_search
    {
        "query": {
            "query_string":{
                "query":"北京",
                "default_field" : "ent_name"
            }
            
        }
    }
    

    精确查询:

    GET ${indexName}/_doc/_search
    {
        "query": {
            "term": {
                "ent_name.raw": "上海齐鲜餐饮有限公司"
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:ElasticSearch:字段--精确查询||模糊查询

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