ELK/elasticsearch

elastic 불용어 테스트

파아랑새 2019. 5. 1. 14:45

DELETE my_index_3

PUT my_index_3
{
  "settings": {
    "analysis": {
      "analyzer": {
        "my_stop_analyzer": {
          "type": "stop",
          "stopwords_path" : "analysis/stopword.txt"
        }
      }
    }
  }
}

POST /my_index_3/_refresh

POST my_index_3/_analyze
{
  "analyzer": "my_stop_analyzer",
  "text": "가다"
}