Skip to content

Instantly share code, notes, and snippets.

@niranjan-uma-shankar
Created August 16, 2012 23:01
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/3374359 to your computer and use it in GitHub Desktop.
Save niranjan-uma-shankar/3374359 to your computer and use it in GitHub Desktop.
curl -XGET 'http://localhost:9200/ninja/interests/_search?pretty=true' -d '
{
"query":{
"query_string":{"query":"entreprene"}
},
"highlight" : {
"fields" : {
"name":{}
}
}
}'
{
"took" : 5,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 1,
"max_score" : 0.2306439,
"hits" : [ {
"_index" : "ninja",
"_type" : "interests",
"_id" : "501a8036db1bc0d256000004",
"_score" : 0.2306439, "_source" : {"name": "meet entrepreneurs", "uri": "meet-entrepreneurs", "plans_count": 5, "is_indexed": 1, "people_interested_count": 25, "people_interested": {"25": 101, "26": 3, "27": 34, "20": 207, "21": 258, "22": 4, "28": 121, "29": 5, "1": 59, "0": 2, "3": 240, "2": 302, "5": 102, "4": 147, "7": 184, "6": 179, "9": 1, "8": 100, "11": 386.0, "10": 261.0, "12": 189.0, "15": 183, "14": 182, "19": 117, "30": 9}, "interest_id": 38.0, "plans": [{"plan_id": "4fdeb63fdb1bc0ef37000000"}, {"plan_id": "4f7c83a4db1bc03c6c000000"}, {"plan_id": "4f7c97dadb1bc00e1a000000"}, {"plan_id": "4f6b2da9db1bc03b6d000000"}, {"plan_id": "4f5725cfdb1bc0a32d000001"}]},
"highlight" : {
"name" : [ "meet entrepreneurs" ]
}
} ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment