Uses of Class
io.lettuce.core.ZStoreArgs
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
-
Uses of ZStoreArgs in io.lettuce.core
Methods in io.lettuce.core that return ZStoreArgs Modifier and Type Method Description static ZStoreArgsZStoreArgs.Builder. max()Creates newZStoreArgssetting AGGREGATE MAX.ZStoreArgsZStoreArgs. max()Aggregate scores of elements existing across multiple sets by using the highest score.static ZStoreArgsZStoreArgs.Builder. min()Creates newZStoreArgssetting AGGREGATE MIN.ZStoreArgsZStoreArgs. min()Aggregate scores of elements existing across multiple sets by using the lowest score.static ZStoreArgsZStoreArgs.Builder. sum()Creates newZStoreArgssetting AGGREGATE SUM.ZStoreArgsZStoreArgs. sum()Aggregate scores of elements existing across multiple sets by summing up.static ZStoreArgsZStoreArgs.Builder. weights(double... weights)Creates newZStoreArgssetting WEIGHTS.static ZStoreArgsZStoreArgs.Builder. weights(long[] weights)Deprecated.ZStoreArgsZStoreArgs. weights(double... weights)Specify a multiplication factor for each input sorted set.static ZStoreArgsZStoreArgs. weights(long[] weights)Deprecated.Methods in io.lettuce.core with parameters of type ZStoreArgs Modifier and Type Method Description RedisFuture<Long>AbstractRedisAsyncCommands. zinterstore(K destination, ZStoreArgs zStoreArgs, K... keys)Mono<Long>AbstractRedisReactiveCommands. zinterstore(K destination, ZStoreArgs zStoreArgs, K... keys)RedisFuture<Long>AbstractRedisAsyncCommands. zunionstore(K destination, ZStoreArgs zStoreArgs, K... keys)Mono<Long>AbstractRedisReactiveCommands. zunionstore(K destination, ZStoreArgs zStoreArgs, K... keys) -
Uses of ZStoreArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type ZStoreArgs Modifier and Type Method Description RedisFuture<Long>RedisSortedSetAsyncCommands. zinterstore(K destination, ZStoreArgs storeArgs, K... keys)Intersect multiple sorted sets and store the resulting sorted set in a new key.RedisFuture<Long>RedisSortedSetAsyncCommands. zunionstore(K destination, ZStoreArgs storeArgs, K... keys)Add multiple sorted sets and store the resulting sorted set in a new key. -
Uses of ZStoreArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type ZStoreArgs Modifier and Type Method Description Mono<Long>RedisSortedSetReactiveCommands. zinterstore(K destination, ZStoreArgs storeArgs, K... keys)Intersect multiple sorted sets and store the resulting sorted set in a new key.Mono<Long>RedisSortedSetReactiveCommands. zunionstore(K destination, ZStoreArgs storeArgs, K... keys)Add multiple sorted sets and store the resulting sorted set in a new key. -
Uses of ZStoreArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type ZStoreArgs Modifier and Type Method Description LongRedisSortedSetCommands. zinterstore(K destination, ZStoreArgs storeArgs, K... keys)Intersect multiple sorted sets and store the resulting sorted set in a new key.LongRedisSortedSetCommands. zunionstore(K destination, ZStoreArgs storeArgs, K... keys)Add multiple sorted sets and store the resulting sorted set in a new key. -
Uses of ZStoreArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type ZStoreArgs Modifier and Type Method Description AsyncExecutions<Long>NodeSelectionSortedSetAsyncCommands. zinterstore(K destination, ZStoreArgs storeArgs, K... keys)Intersect multiple sorted sets and store the resulting sorted set in a new key.AsyncExecutions<Long>NodeSelectionSortedSetAsyncCommands. zunionstore(K destination, ZStoreArgs storeArgs, K... keys)Add multiple sorted sets and store the resulting sorted set in a new key. -
Uses of ZStoreArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type ZStoreArgs Modifier and Type Method Description Executions<Long>NodeSelectionSortedSetCommands. zinterstore(K destination, ZStoreArgs storeArgs, K... keys)Intersect multiple sorted sets and store the resulting sorted set in a new key.Executions<Long>NodeSelectionSortedSetCommands. zunionstore(K destination, ZStoreArgs storeArgs, K... keys)Add multiple sorted sets and store the resulting sorted set in a new key.
ZStoreArgs.Builder.weights(double...).