Skip to content

Instantly share code, notes, and snippets.

@epplestun
Forked from kimchy/config
Created February 14, 2014 15:48
Show Gist options
  • Save epplestun/9003365 to your computer and use it in GitHub Desktop.
Save epplestun/9003365 to your computer and use it in GitHub Desktop.
index:
analysis:
analyzer:
string_lowercase:
tokenizer: keyword
filter: lowercase
curl -XPUT localhost:9200/test -d '{
"mappings" : {
"type1" : {
"properties" : {
"field1" : {
"type" : "string",
"analyzer" : "string_lowercase"
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment