나는elasticsearch 매핑을 사용하여 복수형과 단수형을 모두 찾는 방법은 무엇입니까?
속성에 대한 저장된 값이 shoes
하고 필드에 대한 분석은 눈덩이이며,이 모든 것이 내가 shoes
검색하고 때를 찾을 수없는 ES에도 불구하고 버전 1.2.1을 elasticsearch 사용하고 있습니다. 이것은 내 매핑
{
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"or": [
{
"term": {
"category": "shoes"
}
},
{
"term": {
"sub_category1": "shoes"
}
},
{
"term": {
"sub_category2": "shoes"
}
},
{
"term": {
"brand": "shoes"
}
},
{
"term": {
"shop": "shoes"
}
}
]
}
}
},
"aggregations": {
"category": {
"terms": {
"field": "category"
}
},
"sub_category1": {
"terms": {
"field": "sub_category1"
},
"aggregations": {
"discount": {
"avg": {
"field": "discount_percentage"
}
}
}
}
}
}
: 나는 shoe
를 검색 할 때 문서를 발견 ...
이 내 쿼리입니다
"mappings": {
"item": {
"properties": {
"brand": {
"type": "string",
"analyzer": "snowball"
},
"category": {
"type": "string",
"analyzer": "snowball"
},
"color": {
"type": "string"
},
"created_at": {
"type": "date",
"format": "dateOptionalTime"
},
"discount_percentage": {
"type": "long"
},
"domain_name": {
"type": "string"
},
"id": {
"type": "long"
},
"image": {
"type": "string"
},
"item_name": {
"type": "string"
},
"link": {
"type": "string"
},
"need_indexing": {
"type": "boolean"
},
"price": {
"type": "string"
},
"price_range": {
"type": "string"
},
"product_key": {
"type": "string"
},
"raw_size": {
"type": "string"
},
"regular_price": {
"type": "string"
},
"sale_price": {
"type": "string"
},
"scrape_run": {
"type": "string"
},
"shop": {
"type": "string",
"analyzer": "snowball"
},
"size": {
"type": "string"
},
"source_url": {
"type": "string"
},
"sub_category1": {
"type": "string",
"analyzer": "snowball"
},
"sub_category2": {
"type": "string",
"analyzer": "snowball"
},
"updated_at": {
"type": "date",
"format": "dateOptionalTime"
}
}
}
}
}