| 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 |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<TopKListValue>> |
AbstractRedisAsyncCommands.topKList(K key,
boolean withCount) |
reactor.core.publisher.Flux<TopKListValue> |
AbstractRedisReactiveCommands.topKList(K key,
boolean withCount) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<TopKListValue>> |
RedisTopKAsyncCommands.topKList(K key,
boolean withCount)
Returns the full list of values in Top-K sketch paired with their count if
withCount is true. |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<TopKListValue> |
RedisTopKReactiveCommands.topKList(K key,
boolean withCount)
Returns the full list of values in Top-K sketch paired with their count if
withCount is true. |
| Modifier and Type | Method and Description |
|---|---|
List<TopKListValue> |
RedisTopKCommands.topKList(K key,
boolean withCount)
Returns the full list of values in Top-K sketch paired with their count if
withCount is true. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<TopKListValue>> |
NodeSelectionTopKAsyncCommands.topKList(K key,
boolean withCount)
Returns the full list of values in Top-K sketch paired with their count if
withCount is true. |
| Modifier and Type | Method and Description |
|---|---|
Executions<List<TopKListValue>> |
NodeSelectionTopKCommands.topKList(K key,
boolean withCount)
Returns the full list of values in Top-K sketch paired with their count if
withCount is true. |
| Modifier and Type | Method and Description |
|---|---|
List<TopKListValue> |
TopKListValueParser.parse(ComplexData data) |
Copyright © 2026 lettuce.io. All rights reserved.