일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- licence delete curl
- analyzer test
- ELASTIC
- Java
- MySQL
- Mac
- flask
- 900gle
- aggs
- Test
- Python
- Kafka
- Elasticsearch
- 파이썬
- zip 암호화
- TensorFlow
- zip 파일 암호화
- license delete
- matplotlib
- API
- springboot
- sort
- 차트
- query
- high level client
- aggregation
- plugin
- License
- docker
- token filter test
Archives
- Today
- Total
개발잡부
[es] analyzer test 본문
반응형
GET _analyze
{
"text": "The quick brown fox jumps over the lazy dog",
"tokenizer": "whitespace",
"filter": [
"lowercase",
"stop",
"snowball"
]
}
GET my_index3/_analyze
{
"analyzer": "my_custom_analyzer",
"text": [
"The quick brown fox jumps over the lazy dog"
]
}
POST hyper-item/_analyze
{
"analyzer": "search_analyzer",
"text": "18놈"
}
POST hyper-item/_analyze
{
"analyzer": "index_analyzer",
"text": "18놈"
}
GET hyper-item/_analyze
{
"text": "18놈",
"tokenizer": "homeplus_tokenizer",
"filter": [
"trim",
"lowercase",
"homeplus_stop",
"homeplus_filter",
"homeplus_morphexpansion",
"search_unit_filter"
]
}
반응형
'ElasticStack > Elasticsearch' 카테고리의 다른 글
[es] nested query test (0) | 2022.06.21 |
---|---|
[es] 스코어 계산 확인 - explain (0) | 2022.06.20 |
[es] payload-score 7.15.1 gradle (0) | 2022.05.22 |
[es] High level client for Java sort (1) | 2022.05.16 |
[es] 쿼리를 만들어 보자 4 (0) | 2022.04.24 |
Comments