| 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<Long>> |
AbstractRedisAsyncCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs) |
reactor.core.publisher.Flux<Long> |
AbstractRedisReactiveCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.cmsIncrBy(K key,
IncrementPair<V> pair) |
reactor.core.publisher.Flux<Long> |
AbstractRedisReactiveCommands.cmsIncrBy(K key,
IncrementPair<V> pair) |
RedisFuture<List<String>> |
AbstractRedisAsyncCommands.topKIncrBy(K key,
IncrementPair<V>... pairs) |
reactor.core.publisher.Flux<Value<String>> |
AbstractRedisReactiveCommands.topKIncrBy(K key,
IncrementPair<V>... pairs) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<Long>> |
RedisCMSAsyncCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs)
Increases the count of several items by their given increments in a single call.
|
RedisFuture<List<Long>> |
RedisCMSAsyncCommands.cmsIncrBy(K key,
IncrementPair<V> pair)
Increases the count of an item by the given increment.
|
RedisFuture<List<String>> |
RedisTopKAsyncCommands.topKIncrBy(K key,
IncrementPair<V>... pairs)
Adds a
value to a Top-k sketch. |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<Long> |
RedisCMSReactiveCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs)
Increases the count of several items by their given increments in a single call.
|
reactor.core.publisher.Flux<Long> |
RedisCMSReactiveCommands.cmsIncrBy(K key,
IncrementPair<V> pair)
Increases the count of an item by the given increment.
|
reactor.core.publisher.Flux<Value<String>> |
RedisTopKReactiveCommands.topKIncrBy(K key,
IncrementPair<V>... pairs)
Adds a
value to a Top-k sketch. |
| Modifier and Type | Method and Description |
|---|---|
List<Long> |
RedisCMSCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs)
Increases the count of several items by their given increments in a single call.
|
List<Long> |
RedisCMSCommands.cmsIncrBy(K key,
IncrementPair<V> pair)
Increases the count of an item by the given increment.
|
List<String> |
RedisTopKCommands.topKIncrBy(K key,
IncrementPair<V>... pairs)
Adds a
value to a Top-k sketch. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<Long>> |
NodeSelectionCMSAsyncCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs)
Increases the count of several items by their given increments in a single call.
|
AsyncExecutions<List<Long>> |
NodeSelectionCMSAsyncCommands.cmsIncrBy(K key,
IncrementPair<V> pair)
Increases the count of an item by the given increment.
|
AsyncExecutions<List<String>> |
NodeSelectionTopKAsyncCommands.topKIncrBy(K key,
IncrementPair<V>... pairs)
Adds a
value to a Top-k sketch. |
| Modifier and Type | Method and Description |
|---|---|
Executions<List<Long>> |
NodeSelectionCMSCommands.cmsIncrBy(K key,
IncrementPair<V>... pairs)
Increases the count of several items by their given increments in a single call.
|
Executions<List<Long>> |
NodeSelectionCMSCommands.cmsIncrBy(K key,
IncrementPair<V> pair)
Increases the count of an item by the given increment.
|
Executions<List<String>> |
NodeSelectionTopKCommands.topKIncrBy(K key,
IncrementPair<V>... pairs)
Adds a
value to a Top-k sketch. |
| Modifier and Type | Method and Description |
|---|---|
static <V> IncrementPair<V> |
IncrementPair.of(V value,
long increment)
Creates a new
IncrementPair. |
Copyright © 2026 lettuce.io. All rights reserved.