Elasticsearch 분석기 – 기본 분석기
1676 단어 analyzerselasticsearch
Elasticsearch 분석기 – 기본 분석기
이 자습서에서는 Elasticsearch가 지원하는 기본 분석기를 소개합니다.
1. 키워드 분석기
keyword
analyzer는 전체 입력 문자열을 단일 태그로 반환합니다.
POST _analyze
{
"analyzer": "keyword",
"text": "Java Sample Approach"
}
약관:
[ Java Sample Approach ]
2. 공백 분석기whitespace
공백 문자가 있을 때마다analyzer는 텍스트를 용어로 분해한다.
POST _analyze
{
"analyzer": "whitespace",
"text": "The Java Sample Approach's tutorials."
}
약관:
[ The, Java, Sample, Approach's, tutorials. ]
3. 간이 분석기simple
알파벳이 아닌 문자를 만날 때마다analyzer는 텍스트를 소문자로 분해한다.
POST _analyze
{
"analyzer": "simple",
"text": "The Java Sample Approach's tutorials."
}
약관:
[ the, java, sample, approach, s, tutorials ]
4. 분석 중지stop
analyzer는 simple
analyzer와 유사하지만 정지자 삭제(기본값english
정지자)를 지원합니다.
POST _analyze
{
"analyzer": "stop",
"text": "The Java Sample Approach's tutorials over years."
}
약관:자세한 내용은 다음을 참조하십시오.
https://grokonez.com/elasticsearch/elasticsearch-analyzers-basic-analyzers
Elasticsearch 분석기 – 기본 분석기
Reference
이 문제에 관하여(Elasticsearch 분석기 – 기본 분석기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/elasticsearch-analyzers-basic-analyzers-o5n텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)