Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created May 10, 2012 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimchy/2652028 to your computer and use it in GitHub Desktop.
Save kimchy/2652028 to your computer and use it in GitHub Desktop.
curl -XPUT localhost:9200/test/type/1 -d '{
"city" : {
"name" : "xxx",
"address" : "yyy"
}
}'
curl localhost:9200/test/_search -d '{
"query" : {
"query_string" : {
"fields" : ["city.*"],
"query" : "xxx"
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment