zremrangebyscore #
Removes members from a sorted set, with a score between the provided interval.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/ms/_zremrangebyscore/<_id>
Method: DELETE
Body:
{
"min": "<min interval>",
"max": "<max interval>"
}
Other protocols #
{
"controller": "ms",
"action": "zremrangebyscore",
"_id": "<key>",
"body": {
"min": "<min interval>",
"max": "<max interval>"
}
}
Arguments #
_id
: sorted set identifier
Body properties #
min
: minimum score valuemax
: maximum score value
The min
and max
values are inclusive, but this behavior can be changed (see the redis documentation).
Response #
Returns the number of removed elements.
{
"requestId": "<unique request identifier>",
"status": 200,
"error": null,
"controller": "ms",
"action": "zremrangebyscore",
"collection": null,
"index": null,
"result": 16
}
Edit this page on Github(opens new window)