ZREMRANGEBYSCORE
ZREMRANGEBYSCORE key min max
@write, @sortedset, @slow, Removes all elements in the sorted set stored at key with a score between min and max (inclusive).
Integer reply: the number of elements removed.
ZADD myzset 1 "one" ZADD myzset 2 "two" ZADD myzset 3 "three" ZREMRANGEBYSCORE myzset -inf (2 ZRANGE myzset 0 -1 WITHSCORES
© 2006–2022 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/zremrangebyscore/