Skip to content

Instantly share code, notes, and snippets.

@up1
Last active August 29, 2015 14:02
Show Gist options
  • Save up1/6990fa1b2c836b9e30ea to your computer and use it in GitHub Desktop.
Save up1/6990fa1b2c836b9e30ea to your computer and use it in GitHub Desktop.
ElasticSearch with Auto suggestion
curl -XPUT http://localhost:9200/suggestion -d '{
"mappings": {
"address": {
"properties": {
"province_id": {"type": "integer"},
"province_code": {"type": "string"},
"province_name": {"type": "string"},
"province_name_suggest" : {
"type" : "completion"
}
}
}
}
}'
{
"address": {
"text": "นคร",
"completion": {
"field": "province_name_suggest"
}
}
}
{
"address": {
"text": "นคร",
"completion": {
"field": "province_name_suggest",
"size" : 10
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment