Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.35 KB

File metadata and controls

44 lines (29 loc) · 1.35 KB
code type title
true
page
zremrangebyrank

zremrangebyrank

Removes members from a sorted set, with their position in the set within a provided index range.

Positions are 0-based, meaning the first member of the set has a position of 0.

[Redis documentation]

Arguments

zremrangebyrank(key, start, stop, [options]);

Arguments Type Description
key
string
Sorted set key
start
integer
Starting index offset (inclusive)
stop
integer
Ending index offset (inclusive)
options
object
Optional query arguments

options

The options arguments can contain the following option properties:

Property Type (default) Description
queuable
boolean (true)
If true, queues the request during downtime, until connected to Kuzzle again

Resolve

Resolves to the number of removed elements.

Usage

<<< ./snippets/zremrangebyrank.js