Skip to content

Instantly share code, notes, and snippets.

@CGenie
Created October 20, 2014 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CGenie/ad1daf6cceb689aa08a3 to your computer and use it in GitHub Desktop.
Save CGenie/ad1daf6cceb689aa08a3 to your computer and use it in GitHub Desktop.
ES lowercase analyzer
"doc_type_structure": {
"properties": {
"aid": {"type": "string", "index": "analyzed", "analyzer": "not_analyzed_lowercase"}
}
}
"analysis": {
"analyzer": {
"not_analyzed_lowercase": {
"filter": [
"lowercase"
],
"type": "custom",
"tokenizer": "keyword",
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment