Skip to content

Instantly share code, notes, and snippets.

@selcukusta
Created March 1, 2018 11:39
Show Gist options
  • Select an option

  • Save selcukusta/a6c546b47454a6b170972ef73e3a09f4 to your computer and use it in GitHub Desktop.

Select an option

Save selcukusta/a6c546b47454a6b170972ef73e3a09f4 to your computer and use it in GitHub Desktop.
PUT /icu_index HTTP/1.1
{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0,
"analysis": {
"analyzer": {
"default": {
"filter": [
"lowercase",
"asciifolding"
],
"tokenizer": "standard"
}
}
}
},
"mappings": {
"city": {
"properties": {
"name": {
"type": "text",
"analyzer": "default",
"fields": {
"sortable": {
"type": "icu_collation_keyword",
"index" : false,
"language" : "tr",
"country" : "TR"
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment