Skip to content

Instantly share code, notes, and snippets.

@niranjan-uma-shankar
Created August 16, 2012 22:50
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 niranjan-uma-shankar/3374311 to your computer and use it in GitHub Desktop.
Save niranjan-uma-shankar/3374311 to your computer and use it in GitHub Desktop.
curl -XGET 'http://localhost:9200/ninja/interests/_search?pretty=true' -d '
{
"query":{
"query_string":{"query":"trek"}
},
"highlight" : {
"fields" : {
"name":{}
}
}
}'
{
"took" : 5,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 1,
"max_score" : 0.15945207,
"hits" : [ {
"_index" : "ninja",
"_type" : "interests",
"_id" : "50191a55db1bc07f1a00000b",
"_score" : 0.15945207, "_source" : {"name": "trekking", "tags": ["trekking", "nature & outdoors"], "uri": "trekking", "plans_count": 4, "is_indexed": 1, "people_interested_count": 3, "people_interested": [2, 117, 78], "interest_id": 14.0, "plans": [{"plan_id": "4ff6e54cdb1bc0e06f000000"}, {"plan_id": "4ff606d0db1bc08f31000002"}, {"plan_id": "4ff6066ddb1bc08f31000000"}, {"plan_id": "4faaccd5db1bc05c3d000000"}]},
"highlight" : {
"name" : [ "<em>trekking</em>" ]
}
} ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment