| 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.reactive |
Redis Cluster API for reactive command execution.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
| Modifier and Type | Method and Description |
|---|---|
HotkeysArgs |
HotkeysArgs.count(int count)
Set the number of top keys to report.
|
static HotkeysArgs |
HotkeysArgs.Builder.count(int count)
Creates new
HotkeysArgs with COUNT set. |
HotkeysArgs |
HotkeysArgs.duration(Duration duration)
Set the auto-stop duration.
|
static HotkeysArgs |
HotkeysArgs.Builder.duration(Duration duration)
Creates new
HotkeysArgs with DURATION set. |
HotkeysArgs |
HotkeysArgs.duration(long duration)
Set the auto-stop duration in seconds.
|
static HotkeysArgs |
HotkeysArgs.Builder.duration(long duration)
Creates new
HotkeysArgs with DURATION set. |
HotkeysArgs |
HotkeysArgs.metrics(HotkeysArgs.Metric... metrics)
Set the metrics to track.
|
static HotkeysArgs |
HotkeysArgs.Builder.metrics(HotkeysArgs.Metric... metrics)
Creates new
HotkeysArgs with METRICS set. |
HotkeysArgs |
HotkeysArgs.sample(int ratio)
Set the sampling ratio.
|
static HotkeysArgs |
HotkeysArgs.Builder.sample(int ratio)
Creates new
HotkeysArgs with SAMPLE set. |
HotkeysArgs |
HotkeysArgs.slots(int... slots)
Set the slot numbers to track (cluster mode only).
|
static HotkeysArgs |
HotkeysArgs.Builder.slots(int... slots)
Creates new
HotkeysArgs with SLOTS set. |
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
AbstractRedisReactiveCommands.hotkeysStart(HotkeysArgs args) |
RedisFuture<String> |
AbstractRedisAsyncCommands.hotkeysStart(HotkeysArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisServerAsyncCommands.hotkeysStart(HotkeysArgs args)
Start hotkeys tracking.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
RedisServerReactiveCommands.hotkeysStart(HotkeysArgs args)
Start hotkeys tracking.
|
| Modifier and Type | Method and Description |
|---|---|
String |
RedisServerCommands.hotkeysStart(HotkeysArgs args)
Start hotkeys tracking.
|
| Modifier and Type | Method and Description |
|---|---|
default RedisFuture<String> |
RedisClusterAsyncCommands.hotkeysStart(HotkeysArgs args)
HOTKEYS commands are not supported on the cluster client.
|
AsyncExecutions<String> |
NodeSelectionServerAsyncCommands.hotkeysStart(HotkeysArgs args)
Start hotkeys tracking.
|
| Modifier and Type | Method and Description |
|---|---|
default Mono<String> |
RedisClusterReactiveCommands.hotkeysStart(HotkeysArgs args)
HOTKEYS commands are not supported on the cluster client.
|
| Modifier and Type | Method and Description |
|---|---|
default String |
RedisClusterCommands.hotkeysStart(HotkeysArgs args)
HOTKEYS commands are not supported on the cluster client.
|
Executions<String> |
NodeSelectionServerCommands.hotkeysStart(HotkeysArgs args)
Start hotkeys tracking.
|
Copyright © 2026 lettuce.io. All rights reserved.