Skip to content

Instantly share code, notes, and snippets.

@InputNeuron
Created December 19, 2018 22:04
Show Gist options
  • Select an option

  • Save InputNeuron/bdc4997a9ff47ea90560243ef039c9da to your computer and use it in GitHub Desktop.

Select an option

Save InputNeuron/bdc4997a9ff47ea90560243ef039c9da to your computer and use it in GitHub Desktop.
{
"settings": {
"index": {
"number_of_shards": 3,
"number_of_replicas": 2,
"analysis": {
"analyzer": {
"keyword_lowercase": {
"tokenizer": "keyword",
"filter": [
"lowercase"
]
}
}
}
}
},
"mappings": {
"content": {
"_all": {
"enabled": false
},
"properties": {
"author_name": {
"type": "string",
"analyzer": "keyword_lowercase"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment