Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created December 4, 2011 14:43
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/1430356 to your computer and use it in GitHub Desktop.
Save kimchy/1430356 to your computer and use it in GitHub Desktop.
curl -XPUT localhost:9200/test -d '{
"mappings" : {
"type1" : {
"properties" : {
"linkImgUrl":{"type":"string", index:"not_analyzed"}
}
}
}
}'
curl -XPUT localhost:9200/test/type1/1 -d '{
"linkImgUrl" : "http://upload.wikimedia.org/wikipedia/commons/0/03/Alchemy_of_Happiness.png"
}'
curl -XPOST localhost:9200/test/_refresh
curl localhost:9200/test/_search -d '{
"query" : {
"text" : {
"linkImgUrl" : "http://upload.wikimedia.org/wikipedia/commons/0/03/Alchemy_of_Happiness.png"
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment