zrange #
Returns elements from a sorted set depending on their position in the set, from a start
position index to a stop
position index (inclusives).
First position starts at 0
.
zrange(key, start, stop, [options], [callback]) #
Arguments | Type | Description |
---|---|---|
key | string | Key identifier |
start | int | Start position in the set (index starts at position 0 ) |
stop | int | End position in the set |
options | JSON Object | Optional parameters |
callback | function | Callback |
Options #
Option | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
Return Value #
Returns the MemoryStorage
object to allow chaining.
Callback Response #
Returns an array of objects, each containing the following properties:
member
: member value in the sorted setscore
: member associated score
Usage #
kuzzle.memoryStorage.zrange("key", 0, -1, new ResponseListener<JSONObject[]>() {
@Override
public void onSuccess(JSONObject[] members) {
// callback called once the action has completed
}
@Override
public void onError(JSONObject error) {
}
});
Callback response:
[
{ "member": "foo", "score": 1 },
{ "member": "bar", "score": 2 },
{ "member": "baz", "score": 3 }
]
Edit this page on Github(opens new window)