| 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.
|
| io.lettuce.core.probabilistic.arguments |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
AbstractRedisAsyncCommands.topKReserve(K key,
long k,
TopKReserveArgs args) |
reactor.core.publisher.Mono<String> |
AbstractRedisReactiveCommands.topKReserve(K key,
long k,
TopKReserveArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisTopKAsyncCommands.topKReserve(K key,
long k,
TopKReserveArgs args)
Initializes a Top-K sketch with specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<String> |
RedisTopKReactiveCommands.topKReserve(K key,
long k,
TopKReserveArgs args)
Initializes a Top-K sketch with specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
String |
RedisTopKCommands.topKReserve(K key,
long k,
TopKReserveArgs args)
Initializes a Top-K sketch with specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionTopKAsyncCommands.topKReserve(K key,
long k,
TopKReserveArgs args)
Initializes a Top-K sketch with specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionTopKCommands.topKReserve(K key,
long k,
TopKReserveArgs args)
Initializes a Top-K sketch with specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
TopKReserveArgs |
TopKReserveArgs.decay(double decay)
Sets the decay of the filter.
|
static TopKReserveArgs |
TopKReserveArgs.Builder.decay(double decay)
Creates a new
TopKReserveArgs and sets the decay of the filter. |
TopKReserveArgs |
TopKReserveArgs.depth(long depth)
Sets the depth of the filter.
|
static TopKReserveArgs |
TopKReserveArgs.Builder.depth(long depth)
Creates a new
TopKReserveArgs and sets the depth of the filter. |
TopKReserveArgs |
TopKReserveArgs.width(long width)
Sets the width of the filter.
|
static TopKReserveArgs |
TopKReserveArgs.Builder.width(long width)
Creates a new
TopKReserveArgs and sets the width of the filter. |
Copyright © 2026 lettuce.io. All rights reserved.