7-2. 데이터 색인과 텍스트 분석(실전) - 애널라이저 & 토큰필터
1. 애널라이저 - Analyzer Elasticsearch 에는 애널라이저를 조합하고 그 동작을 자세히 확인할 수 있는 API 들이 있다. _analyze 텍스트 분석 // Request GET _analyze { "text": "The quick brown fox jumps over the lazy dog", "tokenizer": "whitespace", "filter": [ "lowercase", "stop", "snowball" ] } // Response { "tokens" : [ { "token" : "quick", "start_offset" : 4, "end_offset" : 9, "type" : "word", "position" : 1 }, { "token" : "brown", "star..