zoukankan      html  css  js  c++  java
  • termquery与matchquery的区别

    PUT test/_doc/1
    {
      "content":"Hello World"
    }
    GET test/_mapping
    
    {
      "test" : {
        "mappings" : {
          "properties" : {
            "content" : {
              "type" : "text",
              "fields" : {
                "keyword" : {
                  "type" : "keyword",
                  "ignore_above" : 256
                }
              }
            }
          }
        }
      }
    }
    GET test/_analyze
    { 
      "explain": true, 
      "analyzer": "standard",
      "text": "Hello World"
    }
    
    POST test/_search
    {
      "profile": "true",
      "query": {
        "match": {
          "content": "Hello World" 
        }
      }
    }
    
    POST test/_search
    {
      "profile": "true",
      "query": {
        "match": {
          "content": "hello world"
        }
      }
    }
    #查的到数据,因为content.keyword在存数据的时候不分词,不做任何处理.存的就是Hello World
    POST test/_search
    {
      "profile": "true",
      "query": {
        "match": {
          "content.keyword": "Hello World"
        }
      }
    }
    #查不到数据,因为content.keyword在存数据的时候不分词,不做任何处理.存的就是Hello World,而你用小写的hello world去查询,所以查不到数据
    POST test/_search
    {
      "profile": "true",
      "query": {
        "match": {
          "content.keyword": "hello world"
        }
      }
    }
    #查不到,termquery :content:Hello World,你存的数据content是hello
    POST test/_search
    {
      "profile": "true",
      "query": {
        "term": {
          "content": "Hello World"
        }
      }
    }
    #termquery.查不到content作为整体去查
    POST test/_search
    {
      "profile": "true",
      "query": {
        "term": {
          "content": "hello world"
        }
      }
    }
    #查的到,content存的数据是Hello World,所以查得到
    POST test/_search
    {
      "profile": "true",
      "query": {
        "term": {
          "content.keyword": "Hello World"
        }
      }
    }
  • 相关阅读:
    gcc和g++的区别和联系
    Linux基础命令第二天
    Linux基础命令第一天
    Flask入门之完整项目搭建
    Flask入门第三天
    Flask入门第二天
    Flask入门第一天
    vue_drf之多级过滤、排序、分页
    vue_drf之视频接口
    vue_drf之支付宝接口
  • 原文地址:https://www.cnblogs.com/wangchuanfu/p/14182520.html
Copyright © 2011-2022 走看看