Redis ZREMRANGEBYRANK 命令
Redis ZREMRANGEBYRANK 命令用于移除有序集合中,指定的排名(rank)区间内的所有成员。
1. 语法
redis ZREMRANGEBYRANK 命令基本语法如下:
ZREMRANGEBYRANK key start stop
2. 可用版本
>= 2.0.0
3. 返回值
被移除成员的数量。
4. 范例
redis 127.0.0.1:6379> ZADD salary 2000 jack (integer) 1 redis 127.0.0.1:6379> ZADD salary 5000 tom (integer) 1 redis 127.0.0.1:6379> ZADD salary 3500 peter (integer) 1 redis 127.0.0.1:6379> ZREMRANGEBYRANK salary 0 1 # 移除下标 0 至 1 区间内的成员 (integer) 2 redis 127.0.0.1:6379> ZRANGE salary 0 -1 WITHSCORES # 有序集只剩下一个成员 1) "tom" 2) "5000"
Redis ZREMRANGEBYSCORE 命令用于移除有序集中,指定分数(score)区间内的所有成员。语法:redis ZREMRANGEBYSCORE 命令基本语法如下:ZREMRANGEBYSCORE key min max。返回值:被移除成员的数量。