Redis命令-有序集合-zremrangebyscore

 

原文

http://redis.io/commands/zremrangebyscore

 

简介

Remove all members in a sorted set within the given scores.

 

从有序集合中删除指定分数范围内的所有成员。

 

语法

ZREMRANGEBYSCORE key min max

 

版本

Available since 1.2.0.

 

自1.2.0版本可用。

 

时间复杂度

Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements removed by the operation.

 

O(log(N)+M):N是有序集合中元素的数量,M是要删除的元素的数量。

 

描述

Removes all elements in the sorted set stored at key with a score between min and max (inclusive).

 

从有序集合中删除分数在min到max之间(包含min和max)的所有元素。

 

Since version 2.1.6, min and max can be exclusive, following the syntax of ZRANGEBYSCORE.

 

从Redis 2.1.6开始,min和max可以被排除,与ZRANGEBYSCORE语法相同。

 

返回值

Integer reply: the number of elements removed.

 

Integer:删除的元素的数量。

 

例子

redis>  ZADD myzset 1 "one"
(integer) 1
redis>  ZADD myzset 2 "two"
(integer) 1
redis>  ZADD myzset 3 "three"
(integer) 1
redis>  ZREMRANGEBYSCORE myzset -inf (2
(integer) 1
redis>  ZRANGE myzset 0 -1 WITHSCORES
1) "two"
2) "2"
3) "three"
4) "3"
redis>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值