Skip to content

Instantly share code, notes, and snippets.

@jpountz
Last active August 29, 2015 14:02
Show Gist options
  • Save jpountz/d8e3015664fa5e51709c to your computer and use it in GitHub Desktop.
Save jpountz/d8e3015664fa5e51709c to your computer and use it in GitHub Desktop.
UTF8 / elasticsearch
$ echo $LANG
en_US.UTF-8
$ curl -XPUT 'localhost:9200/test/utf8/1' -d '{ "field": "éèçù" }'
{"_index":"test","_type":"utf8","_id":"1","_version":2,"created":false}
$ curl -XGET 'localhost:9200/test/utf8/1'
{"_index":"test","_type":"utf8","_id":"1","_version":2,"found":true,"_source":{ "field": "éèçù" }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment