zrevrangebylex #
Identical to zrangebylex except that the sorted set is traversed in descending order.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_zrevrangebylex/<_id>?min=<min interval>&max=<max interval>[&limit=offset,count]
Method: GET
Other protocols #
{
"controller": "ms",
"action": "zrevrangebylex",
"_id": "<key>",
"min": "<min interval>",
"max": "<max interval>",
"limit": ["<offset>", "<count>"]
}
Arguments #
_id
: sorted set identifiermin
: minimum element valuemax
: maximum element value
The min
and max
values are inclusive by default. To change this behavior, check the full Redis documentation.
Optional: #
limit
: an array of 2 integers, used to limit the number of returned matching elements (similar to SELECT LIMIT offset, count in SQL). Format:[<offset>,<count>]
Response #
Returns an array of matched elements.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "zrevrangebylex",
"collection": null,
"index": null,
"result": [
"...",
"element2",
"element1"
]
}
Edit this page on Github(opens new window)