Elasticsearch 학습노트: multi-fields
2336 단어 Elastic
It is often useful to index the same field in different ways for different purposes. This is the purpose of multi-fields. For instance, a string field could be mapped as a text field for full-text search, and as a keyword field for sorting or aggregations. You can define as many fields with the fields parameter as you want. Please note that this option is only available for core data types and not for the objects.
필드를 여러 가지 인덱스로 설정합니다.예를 들어 문자열은'text'형식으로 설정되어 전체 텍스트 검색에 사용되고,'keyword'형식으로 설정되어 정렬이나 집합에 사용됩니다.
# , 'type' "fields":
# "raw" , city 。
PUT /my_index
{
"mappings": {
"my_type": {
"properties": {
"city": {
"type": "text",
"fields": {
"raw": {
"type": "keyword"
}
}
}
}
}
}
}
데이터 삽입
PUT /my_index/my_type/1
{
"city": "New York"
}
PUT /my_index/my_type/2
{
"city": "York"
}
검색 및 정렬 검색 필드는city이며, 텍스트 형식을 사용합니다.정렬은 도시를 사용했습니다.raw
GET /my_index/_search
{
"query": {
"match": {
"city": "York"
}
},
"sort": {
"city.raw": "asc"
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Elasticsearch 베이스 04 - 매핑된 작업버전 정보 버전 Elasticsearch 버전 JAVA 의존 버전 Elasticsearch 7.x는 이전 버전과 상당히 큰 변화가 있기 때문에 본 편의 내용, 특히 JAVA 코드의 조작은 이전 버전을 사용하는 학우들...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.