Skip to content

Instantly share code, notes, and snippets.

@aplz
Created July 10, 2020 12:04
Show Gist options
  • Save aplz/faa6db7810cbaf416743378b28c9a16f to your computer and use it in GitHub Desktop.
Save aplz/faa6db7810cbaf416743378b28c9a16f to your computer and use it in GitHub Desktop.
elasticsearch analyze API with customized ngram analyzer
GET _analyze
{
"text": "Quick fox",
"tokenizer": {
"type": "ngram",
"min_gram": 3,
"max_gram": 4,
"token_chars": [
"letter",
"digit"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment