-
-
Save thyagobr/e416f9d4dd273fc5463d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -XPUT "http://localhost:9200/my_index" -d' | |
| { | |
| "settings": { | |
| "analysis": { | |
| "analyzer": { | |
| "analyzer_customizado": { | |
| "tokenizer": "standard", | |
| "filter": [ | |
| "lowercase", | |
| "stemmer_plural_portugues", | |
| "asciifolding" | |
| ] | |
| } | |
| }, | |
| "filter": { | |
| "stemmer_plural_portugues": { | |
| "type": "stemmer", | |
| "name": "minimal_portuguese" | |
| } | |
| } | |
| } | |
| } | |
| }' | |
| curl -XGET "http://localhost:9200/my_index/_analyze?analyzer=analyzer_customizado" -d' | |
| { | |
| está ações lugares melhorias nível Nível | |
| }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment