- 浏览: 19518 次
- 性别:
- 来自: 杭州
最新评论
文章列表
Spring事务的传播行为(Propagation Behavior)在接口TransactionDefinition中定义,共七种传播行为。
PROPAGATION_REQUIRED
org.springframework.transaction.TransactionDefinition.PROPAGATION_REQUIREDorg.springframework.transaction.annotation.Propagation.REQUIRED
Support a current transaction; create a new one if none ...
原文
http://redis.io/commands/sinterstore
简介
Intersect multiple sets and store the resulting set in a key.
多个集合的交集,并且把结果集合存储到一个key。
语法
SINTERSTORE destination key [key ...]
版本
Available since 1.0.0.
自1.0.0版本可用。
时间复杂度
Time complexity: O(N*M) worst case where N is the ca ...
原文
http://redis.io/commands/sinter
简介
Intersect multiple sets.
多个集合的交集。
语法
SINTER key [key ...]
版本
Available since 1.0.0.
自1.0.0版本可用。
时间复杂度
Time complexity: O(N*M) worst case where N is the cardinality of the smallest set and M is the number of sets.
O(N*M):N是最小集 ...
原文
http://redis.io/commands/sdiffstore
简介
Subtract multiple sets and store the resulting set in a key.
多个集合的差集,并且把结果集合存储到一个key。
语法
SDIFFSTORE destination key [key ...]
版本
Available since 1.0.0.
自1.0.0版本可用。
时间复杂度
Time complexity: O(N) where N is the total number of el ...
原文
http://redis.io/commands/sdiff
简介
Subtract multiple sets.
多个集合的差集。
语法
SDIFF key [key ...]
版本
Available since 1.0.0.
自1.0.0版本可用。
时间复杂度
Time complexity: O(N) where N is the total number of elements in all given sets.
O(N):N是所有给定集合中元素的总数。
描述
Returns the memb ...
原文
http://redis.io/commands/scard
简介
Get the number of members in a set.
获取集合中成员的数量。
语法
SCARD key
版本
Available since 1.0.0.
自1.0.0版本可用。
时间复杂度
Time complexity: O(1)
描述
Returns the set cardinality (number of elements) of the set stored at key.
返回集合的基数(即成员的数量)。 ...
原文
http://redis.io/commands/sadd
简介
Add one or more members to a set.
在集合中添加一个或多个成员。
语法
SADD key member [member ...]
版本
Available since 1.0.0.
自1.0.0版本可用。
时间复杂度
Time complexity: O(N) where N is the number of members to be added.
O(N):N是添加的成员的数量。
描述
Add the s ...
原文
http://redis.io/commands/zscan
简介
Incrementally iterate sorted sets elements and associated scores.
增量地迭代有序集合的元素和关联的分数。
语法
ZSCAN key cursor [MATCH pattern] [COUNT count]
版本
Available since 2.8.0.
自2.8.0版本可用。
时间复杂度
Time complexity: O(1) for every call. O(N) for a c ...
原文
http://www.redis.io/commands/zunionstore
简介
Add multiple sorted sets and store the resulting sorted set in a new key.
计算多个有序集合的并集,并把结果有序集合存在到一个新的key。
语法
ZUNIONSTORE destination numkeys key [key ...] [WEIGHTS weight [weight ...]] [AGGREGATE SUM|MIN|MAX]
版本
Available since 2 ...
原文
http://redis.io/commands/zscore
简介
Get the score associated with the given member in a sorted set.
获取有序集合中指定成员的分数。
语法
ZSCORE key member
版本
Available since 1.2.0.
自1.2.0版本可用。
时间复杂度
Time complexity: O(1)
描述
Returns the score of member in the sorted set at key.
...
原文
http://redis.io/commands/zremrangebylex
简介
Remove all members in a sorted set between the given lexicographical range.
从有序集合中删除指定词典范围内的所有成员。
语法
ZREMRANGEBYLEX key min max
版本
Available since 2.8.9.
自2.8.9版本可用。
时间复杂度
Time complexity: O(log(N)+M) with N being the num ...
原文
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 eleme ...
原文
http://redis.io/commands/zremrangebyrank
简介
Remove all members in a sorted set within the given indexes.
从有序集合中删除指定索引范围内的所有成员。
语法
ZREMRANGEBYRANK key start stop
版本
Available since 2.0.0.
自2.0.0版本可用。
时间复杂度
Time complexity: O(log(N)+M) with N being the number of ele ...
原文
http://redis.io/commands/zrem
简介
Remove one or more members from a sorted set.
从有序集合中删除一个或多个成员。
语法
ZREM key member [member ...]
版本
Available since 1.2.0.
自1.2.0版本可用。
时间复杂度
Time complexity: O(M*log(N)) with N being the number of elements in the sorted set and M the ...
原文
http://redis.io/commands/zrevrank
简介
Determine the index of a member in a sorted set, with scores ordered from high to low.
确定有序集合中成员的索引,按照分数从高到低的顺序。
语法
ZREVRANK key member
版本
Available since 2.0.0.
自2.0.0版本可用。
时间复杂度
Time complexity: O(log(N))
描述
Returns the ...