Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created December 10, 2011 00:00
Show Gist options
  • Save kimchy/1453902 to your computer and use it in GitHub Desktop.
Save kimchy/1453902 to your computer and use it in GitHub Desktop.
curl -XPUT localhost:9200/test/type/1 -d '{
"a" : {
"x" : "aaa"
},
"b" : {
"x" : "bbb"
}
}'
curl -XPUT localhost:9200/test/type/2 -d '{
"a" : {
"x" : "zzz"
},
"b" : {
"x" : "yyy"
}
}'
curl -XPOST localhost:9200/_refresh
curl 'localhost:9200/test/_search?q=*&sort=a.x'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment