Nori 한국어 분석기
PUT /my_index
{
"settings": {
"analysis": {
"analyzer": {
"korean": {
"type": "custom",
"tokenizer": "nori_tokenizer"
}
}
}
}
}검색 쿼리
GET /my_index/_search
{
"query": {
"multi_match": {
"query": "서버 모니터링",
"fields": ["title^3", "content"]
}
}
}
댓글 0