![php](https://habrastorage.org/r/w120/files/373/e8b/dd3/373e8bdd3cb644d3bbeba47d34d1876d.png)
PHP
4
Вклад в тег
PUT /pets_index
{
"settings": {
"analysis": {
"filter": {
"pet_synonyms": {
"type": "synonym",
"synonyms": [
"собака, щенок, кобель => dog",
"кошка, кот, котёнок => cat",
"попугай, попугайчик => parrot"
]
}
},
"analyzer": {
"pet_analyzer": {
"type": "custom",
"tokenizer": "standard",
"filter": ["lowercase", "pet_synonyms"]
}
}
}
},
"mappings": {
"properties": {
"pet_type": {
"type": "text",
"analyzer": "pet_analyzer"
}
}
}
}