How to search for records in JSON?
For example:
http://server.cc/riak/Scores/user12
{ v: "{"score":0,"tab":14,"gold":255}" }
How do I get all the records where the "gold" is more than 150 or equal 255?
I'm installed the Riak Search hook on bucket. I have used example from riak php lib.
$client = new Riak(self::HOST, self::PORT);
$bucket = $client->bucket("Scores");
$results = $client->search("Scores", "gold:255")->run();
doesn't have results.
Can this be done through mapreduce?