Redis 排序集合 Zremrangebyscore 命令
Redis ZREMRANGEBYSCORE 命令用于移除有序集合中分数在 min 和 max 之间(包括 min 和 max)的所有元素。
返回值
整数型回复,表示移除的元素数量。
语法
以下是 Redis ZREMRANGEBYSCORE 命令的基本语法。
redis 127.0.0.1:6379> ZREMRANGEBYSCORE key min max
示例
redis 127.0.0.1:6379> ZADD myzset 1 b 2 c 3 d 4 e
(integer) 4
redis 127.0.0.1:6379> ZREMRANGEBYSCORE myzset -inf (2
(integer) 1
redis 127.0.0.1:6379> ZRANGE myzset 0 -1 WITHSCORES
1) "b"
2) "2"
3) "c"
4) "3"
5) "d"
6) "4"
7) "e"
8) "5"