Remove all members in a sorted set between the given scores.
await redis.zremrangebyscore("key", 2, 5)
The key of the sorted set
The minimum score to remove.
The maximum score to remove.
The number of elements removed from the sorted set.
Was this page helpful?