- 浏览: 19564 次
- 性别:
- 来自: 杭州
最新评论
文章列表
原文
http://redis.io/commands/zrank
简介
Determine the index of a member in a sorted set.
确定有序集合中成员的索引。
语法
ZRANK key member
版本
Available since 2.0.0.
自2.0.0版本可用。
时间复杂度
Time complexity: O(log(N))
描述
Returns the rank of member in the sorted set stored at key, with the ...
原文
http://redis.io/commands/zrevrangebyscore
简介
Return a range of members in a sorted set, by score, with scores ordered from high to low.
根据分数,返回有序集合中一定范围内的成员,按照分数从高到低。
语法
ZREVRANGEBYSCORE key max min [WITHSCORES] [LIMIT offset count]
版本
Available since 2.2.0.
自2.2.0版本可用 ...
原文
http://redis.io/commands/zrangebyscore
简介
Return a range of members in a sorted set, by score.
根据分数,返回有序集合中一定范围内的元素。
语法
ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count]
版本
Available since 1.0.5.
自1.0.5版本可用。
时间复杂度
Time complexity: O(log(N)+M) with N bein ...
原文
http://redis.io/commands/zrevrangebylex
简介
Return a range of members in a sorted set, by lexicographical range, ordered from higher to lower strings.
根据词典范围,返回有序集合中一定范围内的元素,按照字符串由高到低。
语法
ZREVRANGEBYLEX key max min [LIMIT offset count]
版本
Available since 2.8.9.
自2.8.9版本 ...
原文
http://redis.io/commands/zrangebylex
简介
Return a range of members in a sorted set, by lexicographical range.
根据词典范围,返回有序集合中一定范围内的成员。
语法
ZRANGEBYLEX key min max [LIMIT offset count]
版本
Available since 2.8.9.
自2.8.9版本可用。
时间复杂度
Time complexity: O(log(N)+M) with N bei ...
原文
http://redis.io/commands/zrevrange
简介
Return a range of members in a sorted set, by index, with scores ordered from high to low.
根据索引返回有序集合中一定范围内的成员,按照分数从高到低排序。
语法
ZREVRANGE key start stop [WITHSCORES]
版本
Available since 1.2.0.
自1.2.0版本可用。
时间复杂度
Time complexity: O ...
原文
http://redis.io/commands/zrange
简介
Return a range of members in a sorted set, by index.
根据索引,返回有序集合中一定范围内的成员。
语法
ZRANGE key start stop [WITHSCORES]
版本
Available since 1.2.0.
自1.2.0版本可用。
...
原文
http://redis.io/commands/zlexcount
简介
Count the number of members in a sorted set between a given lexicographical range.
计算有序集合中在指定词典范围内的成员的数量。
语法
ZLEXCOUNT key min max
版本
Available since 2.8.9.
自2.8.9版本可用。
时间复杂度
Time complexity: O(log(N)) with N being the number ...
原文
http://redis.io/commands/zinterstore
简介
Intersect multiple sorted sets and store the resulting sorted set in a new key.
计算多个有序集合的交集,并存储到另一个有序集合。
语法
ZINTERSTORE destination numkeys key [key ...] [WEIGHTS weight [wei ...
原文
http://redis.io/commands/zincrby
简介
Increment the score of a member in a sorted set.
增加有序集合中一个成员的分数。
语法
ZINCRBY key increment member
版本
Available since 1.2.0.
自1.2.0版本可用。
时间复杂度
Time complex ...
原文
http://redis.io/commands/zcount
简介
Count the members in a sorted set with scores within the given values.
计算有序集合中分数在指定值范围内的元素的数量。
语法
ZCOUNT key min max
版本
Available since 2.0.0.
自2.0.0版本可用。
时间复杂度
Time complexity: O(log(N)) with N being the number of elements in th ...
原文
http://redis.io/commands/zcard
简介
Get the number of members in a sorted set.
获取有序集合的成员数量。
语法
ZCARD key
版本
Available since 1.2.0.
自1.2.0版本可用。
时间复杂度
Time complexity: O(1)
描述
Returns the sorted set cardinality (number of elements) of the sorted set stored at key ...
原文
http://redis.io/commands/zadd
简介
Add one or more members to a sorted set, or update its score if it already exists.
添加一个或多个成员到有序集合,如果成员已经存在则更新它的分数。
语法
ZADD key [NX|XX] [CH] [INCR] score member [score member ...]
版本
Available since 1.2.0.
自1.2.0版本可用。
时间复杂度
Time com ...