es学习笔记-1

POST /article/_analyze 
{
  "analyzer": "my_analyzer",
  "text": ["贵州省县级融媒体中心省级技术平台“多彩云”系列移动客户端集中上线美国"]
}

PUT article
{
  "settings": {
    "analysis": {
      "analyzer": {
        "my_analyzer": {
          "char_filter": [
            "html_strip"
          ],
          "filter": [
            "my_stopwords"
          ],
          "tokenizer": "ik_max_word",
          "type": "custom"
        }
      },
      "filter": {
        "my_stopwords": {
          "stopwords": [
            "美国",
            "日本"
          ],
          "type": "stop"
        }
      }
    }
  },
  "mappings": {
    "properties": {
      "content": {
        "type": "text",
        "analyzer": "my_analyzer",
        "search_analyzer": "standard"
      }
    }
  }
}

DELETE article

POST /article/_search

POST /article/_doc/1
{
  "title":"贵州省县级融媒体中心省级技术平台“多彩云”系列移动客户端集中上线",
  "content":"贵州省县级融媒体中心省级技术平台“多彩云”系列移动客户端集中上线美国"
}

POST /article/_search 
{
  "query": {
    "match": {
      "content": "贵州省县级融媒体中心省级技术平台"
    }
  }  
}

#查询某个字段分词词项(term)
GET /${index}/${type}/${id}/_termvectors?fields=${fields_name}
GET /article/_doc/1/_termvectors?fields=content

  

posted @ 2020-06-18 15:45  薛无道  阅读(90)  评论(0编辑  收藏  举报