zrevrangebyscore #
Identical to zrangebyscore except that the sorted set is traversed in descending order.
zrevrangebyscore(key, min, max, [options], [callback]) #
Arguments | Type | Description |
---|---|---|
key | string | Key identifier |
min | double | Minimum score value (inclusive by default) |
max | double | Maximum score value (inclusive by default) |
options | JSON Object | Optional parameters |
callback | function | Callback |
Options #
Option | Type | Description | Default |
---|---|---|---|
limit | array | Limit the result set to a range of matching elements (similar to SELECT LIMIT offset, count in SQL). Format: [<offset(int)>, <count(int)>] | null |
queuable | boolean | Make this request queuable or not | true |
Return value #
Returns the MemoryStorage
object to allow chaining.
Callback Response #
Returns an array of matching members.
Usage #
<?php
use \Kuzzle\Kuzzle;
$kuzzle = new Kuzzle('localhost');
try {
$members = $kuzzle->memoryStorage()->zrevrangebyscore('key', 2, 3);
}
catch (ErrorException $e) {
}
Callback response:
[
{ "member": "baz", "score": 3 },
{ "member": "bar", "score": 2 },
{ "member": "foo", "score": 1 }
]
Edit this page on Github(opens new window)