| Methods in org.idevlab.rjc with parameters of type ZParams |
Long |
SingleRedisOperations.zinterstore(String dstkey,
ZParams params,
String... sets)
Time complexity
O(N*K)+O(M*log(M)) worst case with N being the smallest input sorted set,
K being the number of input sorted sets and M being the number of elements in
the resulting sorted set. |
Long |
RedisNode.zinterstore(String dstkey,
ZParams params,
String... sets)
|
void |
RedisCommands.zinterstore(String dstkey,
ZParams params,
String... sets)
|
void |
Client.zinterstore(String dstkey,
ZParams params,
String... sets)
|
Long |
SingleRedisOperations.zunionstore(String dstkey,
ZParams params,
String... sets)
Time complexity
O(N)+O(M log(M)) with N being the sum of the sizes of the input sorted sets,
and M being the number of elements in the resulting sorted set. |
Long |
RedisNode.zunionstore(String dstkey,
ZParams params,
String... sets)
|
void |
RedisCommands.zunionstore(String dstkey,
ZParams params,
String... sets)
|
void |
Client.zunionstore(String dstkey,
ZParams params,
String... sets)
|