Created
November 15, 2011 16:37
-
-
Save biot023/1367538 to your computer and use it in GitHub Desktop.
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 -XPOST "http://localhost:9200/folksy_test_search" | |
curl -XPUT "http://localhost:9200/folksy_test_search/items/1" -d '{"price":10.0,"material_ids":[1],"listed_at":"20110915T152837","place_id":null,"title":"Red Jumper","section_id":1,"user_login":"user000001","id":1,"category_id":1,"colour_ids":[1],"description":"A beautiful red jumper hand-knitted with quality wool.","keywords":"Men Clothes Jumpers Blue Cotton","subcategory_id":1}' | |
curl -XPUT "http://localhost:9200/folksy_test_search/items/2" -d '{"price":10.0,"material_ids":[1],"listed_at":"20110915T152837","place_id":null,"title":"Red Jumper","section_id":1,"user_login":"user000003","id":2,"category_id":1,"colour_ids":[1],"description":"A beautiful red jumper hand-knitted with quality wool.","keywords":"Men Clothes Jumpers Blue Cotton","subcategory_id":1}' | |
curl -XPUT "http://localhost:9200/folksy_test_search/items/3" -d '{"price":3.0,"material_ids":[1],"listed_at":"20110915T152838","place_id":null,"title":"Red Jumper","section_id":1,"user_login":"user000005","id":3,"category_id":1,"colour_ids":[1],"description":"A beautiful red jumper hand-knitted with quality wool.","keywords":"Men Clothes Jumpers Blue Cotton","subcategory_id":1}' | |
curl -XPUT "http://localhost:9200/folksy_test_search/items/4" -d '{"price":3.0,"material_ids":[1],"listed_at":"20110915T152839","place_id":null,"title":"Red Jumper","section_id":1,"user_login":"user000007","id":4,"category_id":1,"colour_ids":[1],"description":"A beautiful red jumper hand-knitted with quality wool.","keywords":"Men Clothes Jumpers Blue Cotton","subcategory_id":1}' | |
curl -XGET "http://localhost:9200/folksy_test_search/items/_search?pretty=true" -d '{"size":18,"sort":[{"listed_at":"desc"}],"from":0,"query":{"filtered":{"filter":{"and":[{"or":[{"range":{"price":{"to":4.99,"from":0.0}}}]}]},"query":{"term":{"category_id":1}}}}}' | |
curl -XGET "http://localhost:9200/folksy_test_search/items/_search?pretty=true" -d '{"size":18,"sort":[{"listed_at":"desc"}],"from":0,"query":{"filtered":{"filter":{"range":{"price":{"to":4.99,"from":0.0}}},"query":{"term":{"category_id":1}}}}}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment