일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Java
- aggs
- matplotlib
- MySQL
- API
- sort
- flask
- License
- licence delete curl
- 900gle
- 파이썬
- Test
- license delete
- zip 파일 암호화
- TensorFlow
- Python
- aggregation
- 차트
- Kafka
- query
- high level client
- ELASTIC
- Mac
- analyzer test
- zip 암호화
- token filter test
- springboot
- Elasticsearch
- docker
- plugin
Archives
- Today
- Total
개발잡부
[es] plugin 3 - custom analyzer 본문
반응형
자모 필터와 초성 필터를 적용해보자.
커스텀 애널라이저 생성하면서 토큰필터에 추가해 보았다.
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