Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring Container란
- spring 장점
- Bean Factory란
- 계산기
- 안드로이드
- Servlet과 Thread
- ApplicationContext란
- ElasticSearch 동의어 파일
- Dispathcher Servlet이란
- Spring Servlet이란
- Servlet 멀티 스레딩
- 동의어 파일
- ElasticSearch 동의어 사전
- 자바
- elasticSearch
- ContextLoaderListener란
- Servlet Container란
- Servlet Life Cycle
- ElasticSearch 토큰필터
- Spring Handler
- ElasticSearch Shingle
- 안드로이드스튜디오
- ElasticSearch NGram
- H2 DB
- Java
- 인텔리제이
- H2
- ElasticSearch EdgeNGram
- 토큰필터
- layout
Archives
- Today
- Total
목록ElasticSearch uppercase (1)
결국 무엇이든 해내는 사람
ElasticSearch - lowercase, uppercase 토큰 필터 [ 예제, 설명 ]
-- 영어나 유럽어 기반의 텍스트들은 대소문자가 있다 -- 검색할 때에는 대소문자에 상관없이 가능하도록 처리 해 주어야 한다 -- 그래서 lowercase 토큰 필터는 거의 모든 텍스트 검색 사례에서 사용되는 토큰 필터이다. GET _analyze { "filter": [ "lowercase" ], "text": [ "Harry Potter and the Philosopher's Stone" ] } -- 소문자로 변경 { "tokens" : [ { "token" : "harry potter and the philosopher's stone", "start_offset" : 0, "end_offset" : 40, "type" : "word", "position" : 0 } ] } GET _analyze {..
두서없는 공부 노트/ElasticSearch
2021. 12. 14. 16:28