Reimplementing and extending the analyzers
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Reimplementing and extending the analyzers
editThe polish analyzer could be reimplemented as a custom analyzer that can
then be extended and configured differently as follows:
PUT /stempel_example
{
"settings": {
"analysis": {
"analyzer": {
"rebuilt_stempel": {
"tokenizer": "standard",
"filter": [
"lowercase",
"polish_stop",
"polish_stem"
]
}
}
}
}
}