Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with
the various Redis 'drivers'/libraries.
|
org.springframework.data.redis.connection.jedis |
Connection package for Jedis library.
|
org.springframework.data.redis.connection.lettuce |
Connection package for Lettuce Redis client.
|
Modifier and Type | Method and Description |
---|---|
static RedisZSetCommands.Aggregate |
RedisZSetCommands.Aggregate.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisZSetCommands.Aggregate[] |
RedisZSetCommands.Aggregate.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Optional<RedisZSetCommands.Aggregate> |
ReactiveZSetCommands.ZUnionStoreCommand.getAggregateFunction() |
Optional<RedisZSetCommands.Aggregate> |
ReactiveZSetCommands.ZInterStoreCommand.getAggregateFunction() |
Modifier and Type | Method and Description |
---|---|
ReactiveZSetCommands.ZUnionStoreCommand |
ReactiveZSetCommands.ZUnionStoreCommand.aggregateUsing(RedisZSetCommands.Aggregate aggregateFunction)
Applies a specific
RedisZSetCommands.Aggregate function. |
ReactiveZSetCommands.ZInterStoreCommand |
ReactiveZSetCommands.ZInterStoreCommand.aggregateUsing(RedisZSetCommands.Aggregate aggregateFunction)
Applies a specific
RedisZSetCommands.Aggregate function. |
Long |
RedisZSetCommands.zInterStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets)
Intersect sorted
sets and store result in destination key . |
Long |
DefaultStringRedisConnection.zInterStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
default reactor.core.publisher.Mono<Long> |
ReactiveZSetCommands.zInterStore(ByteBuffer destinationKey,
List<ByteBuffer> sets,
List<Double> weights,
RedisZSetCommands.Aggregate aggregateFunction)
Intersect sorted sets by applying aggregateFunction and store result in destination
destinationKey and apply weights to individual sets.
|
Long |
StringRedisConnection.zInterStore(String destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
String... sets) |
Long |
DefaultStringRedisConnection.zInterStore(String destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
String... sets) |
Long |
RedisZSetCommands.zUnionStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets)
Union sorted
sets and store result in destination key . |
Long |
DefaultStringRedisConnection.zUnionStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
default reactor.core.publisher.Mono<Long> |
ReactiveZSetCommands.zUnionStore(ByteBuffer destinationKey,
List<ByteBuffer> sets,
List<Double> weights,
RedisZSetCommands.Aggregate aggregateFunction)
Union sorted sets by applying aggregateFunction and store result in destination
destinationKey and apply weights to individual sets.
|
Long |
StringRedisConnection.zUnionStore(String destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
String... sets) |
Long |
DefaultStringRedisConnection.zUnionStore(String destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
String... sets) |
Modifier and Type | Method and Description |
---|---|
Long |
JedisConnection.zInterStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
Long |
JedisClusterConnection.zInterStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
Long |
JedisConnection.zUnionStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
Long |
JedisClusterConnection.zUnionStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
Modifier and Type | Method and Description |
---|---|
Long |
LettuceConnection.zInterStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
Long |
LettuceConnection.zUnionStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets) |
Copyright © 2011-2016–2016 Pivotal Software, Inc.. All rights reserved.