Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
|
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. |
default Long |
DefaultedRedisConnection.zInterStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets)
Deprecated.
in favor of
RedisConnection.zSetCommands() }. |
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)
Intersect sorted
sets and store result in destination key . |
Long |
DefaultStringRedisConnection.zInterStore(String destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
String... sets) |
default Long |
DefaultedRedisConnection.zUnionStore(byte[] destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
byte[]... sets)
Deprecated.
in favor of
RedisConnection.zSetCommands() }. |
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)
Union sorted
sets and store result in destination key . |
Long |
DefaultStringRedisConnection.zUnionStore(String destKey,
RedisZSetCommands.Aggregate aggregate,
int[] weights,
String... sets) |
Copyright © 2011–2018 Pivotal Software, Inc.. All rights reserved.