ElasticStack8/Elasticsearch
[es] analyzer, token filter test
닉의네임
2023. 8. 29. 11:24
반응형
GET _analyze
{
"text": "The quick brown fox jumps over the lazy dog",
"analyzer": "snowball"
}
GET _analyze
{
"text": "The quick brown fox jumps over the lazy dog",
"tokenizer": "homeplus_tokenizer",
"filter": [
"lowercase",
"stop",
"snowball"
]
}
반응형