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.
|
Modifier and Type | Class and Description |
---|---|
class |
ZStoreArgs
Argument list builder for the Redis ZUNIONSTORE and
ZINTERSTORE commands.
|
Modifier and Type | Method and Description |
---|---|
ZAggregateArgs |
ZAggregateArgs.max()
Aggregate scores of elements existing across multiple sets by using the highest score.
|
static ZAggregateArgs |
ZAggregateArgs.Builder.max()
Creates new
ZAggregateArgs setting AGGREGATE MAX. |
ZAggregateArgs |
ZAggregateArgs.min()
Aggregate scores of elements existing across multiple sets by using the lowest score.
|
static ZAggregateArgs |
ZAggregateArgs.Builder.min()
Creates new
ZAggregateArgs setting AGGREGATE MIN. |
ZAggregateArgs |
ZAggregateArgs.sum()
Aggregate scores of elements existing across multiple sets by summing up.
|
static ZAggregateArgs |
ZAggregateArgs.Builder.sum()
Creates new
ZAggregateArgs setting AGGREGATE SUM. |
ZAggregateArgs |
ZAggregateArgs.weights(double... weights)
Specify a multiplication factor for each input sorted set.
|
static ZAggregateArgs |
ZAggregateArgs.Builder.weights(double... weights)
Creates new
ZAggregateArgs setting WEIGHTS. |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<V>> |
AbstractRedisAsyncCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys) |
Flux<V> |
AbstractRedisReactiveCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys) |
RedisFuture<List<ScoredValue<V>>> |
AbstractRedisAsyncCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys) |
Flux<ScoredValue<V>> |
AbstractRedisReactiveCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys) |
RedisFuture<List<V>> |
AbstractRedisAsyncCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys) |
Flux<V> |
AbstractRedisReactiveCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys) |
RedisFuture<List<ScoredValue<V>>> |
AbstractRedisAsyncCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys) |
Flux<ScoredValue<V>> |
AbstractRedisReactiveCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys) |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<V>> |
RedisSortedSetAsyncCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
RedisFuture<List<ScoredValue<V>>> |
RedisSortedSetAsyncCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
RedisFuture<List<V>> |
RedisSortedSetAsyncCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
RedisFuture<List<ScoredValue<V>>> |
RedisSortedSetAsyncCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Modifier and Type | Method and Description |
---|---|
Flux<V> |
RedisSortedSetReactiveCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
Flux<ScoredValue<V>> |
RedisSortedSetReactiveCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
Flux<V> |
RedisSortedSetReactiveCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Flux<ScoredValue<V>> |
RedisSortedSetReactiveCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Modifier and Type | Method and Description |
---|---|
List<V> |
RedisSortedSetCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
List<ScoredValue<V>> |
RedisSortedSetCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
List<V> |
RedisSortedSetCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
List<ScoredValue<V>> |
RedisSortedSetCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Modifier and Type | Method and Description |
---|---|
AsyncExecutions<List<V>> |
NodeSelectionSortedSetAsyncCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
AsyncExecutions<List<ScoredValue<V>>> |
NodeSelectionSortedSetAsyncCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
AsyncExecutions<List<V>> |
NodeSelectionSortedSetAsyncCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
AsyncExecutions<List<ScoredValue<V>>> |
NodeSelectionSortedSetAsyncCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Modifier and Type | Method and Description |
---|---|
Executions<List<V>> |
NodeSelectionSortedSetCommands.zinter(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
Executions<List<ScoredValue<V>>> |
NodeSelectionSortedSetCommands.zinterWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Intersect multiple sorted sets and returns the resulting sorted.
|
Executions<List<V>> |
NodeSelectionSortedSetCommands.zunion(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Executions<List<ScoredValue<V>>> |
NodeSelectionSortedSetCommands.zunionWithScores(ZAggregateArgs aggregateArgs,
K... keys)
Add multiple sorted sets and returns the resulting sorted set.
|
Copyright © 2023 lettuce.io. All rights reserved.