Last active
August 29, 2015 14:02
-
-
Save up1/6990fa1b2c836b9e30ea to your computer and use it in GitHub Desktop.
ElasticSearch with Auto suggestion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
} | |
} | |
} | |
} | |
}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"address": { | |
"text": "นคร", | |
"completion": { | |
"field": "province_name_suggest" | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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