일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Python
- 차트
- springboot
- sort
- Test
- 900gle
- matplotlib
- aggs
- Java
- Elasticsearch
- analyzer test
- flask
- MySQL
- Mac
- zip 파일 암호화
- TensorFlow
- API
- aggregation
- zip 암호화
- docker
- plugin
- query
- high level client
- ELASTIC
- licence delete curl
- token filter test
- License
- Kafka
- license delete
- 파이썬
Archives
- Today
- Total
개발잡부
[es] Analyzer 01 본문
반응형
애널라이저 테스트
GET _analyze
{
"text": "The quick brown fox jumps over the lazy dog",
"tokenizer": "whitespace",
"filter": [
"lowercase",
"stop",
"snowball"
]
}
결과가 이렇게 나오는디.. 음..
whitespace 를 거치면서 공백으로 나누어 진 토큰 들을 lowercase 에서 소문자로 변경,
그 후에 stop (불용어) 필터 에서 the 가 제거,
snowball 필터에서 jumps 가 jump 로 변경
등록된 Analyzer 를 통해 테스트
GET _analyze
{
"text": "The quick brown fox jumps over the lazy dog",
"analyzer": "snowball"
}
반응형
'ElasticStack > Elasticsearch' 카테고리의 다른 글
[es] function score Query (0) | 2021.12.20 |
---|---|
[es] plugin 4 - custom analyzer 사용 (0) | 2021.12.15 |
[es] plugin 3 - custom analyzer (0) | 2021.12.12 |
[es] plugin 1 (mvn 설치) (0) | 2021.11.10 |
index template (0) | 2021.10.13 |
Comments