반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

[es] plugin 3 - custom analyzer 본문

ElasticStack/Elasticsearch

[es] plugin 3 - custom analyzer

닉의네임 2021. 12. 12. 23:39
반응형

자모 필터와 초성 필터를 적용해보자.

커스텀 애널라이저 생성하면서 토큰필터에 추가해 보았다. 

 

PUT my_index3
{
  "settings": {
    "index": {
      "analysis": {
        "analyzer": {
          "my_custom_analyzer": {
            "type": "custom",
            "tokenizer": "whitespace",
            "filter": [
              "lowercase",
              "stop",
              "snowball",
              "doo_jamo",
              "doo_chosung"
            ]
          }
        }
      }
    }
  }
}

 

애널라이저를 테스트 해보았는데..

GET my_index3/_analyze
{
  "analyzer": "my_custom_analyzer",
  "text": [
    "한글 자모 분석 필터"
  ]
}

 

결과

 

음.. 그렇군.. 근데 이걸 어찌쓴담..

 

반응형

'ElasticStack > Elasticsearch' 카테고리의 다른 글

[es] function score Query  (0) 2021.12.20
[es] plugin 4 - custom analyzer 사용  (0) 2021.12.15
[es] Analyzer 01  (0) 2021.12.08
[es] plugin 1 (mvn 설치)  (0) 2021.11.10
index template  (0) 2021.10.13
Comments