| 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 | Method and Description |
|---|---|
RedisFuture<IncrexValue<Long>> |
AbstractRedisAsyncCommands.increx(K key) |
reactor.core.publisher.Mono<IncrexValue<Long>> |
AbstractRedisReactiveCommands.increx(K key) |
RedisFuture<IncrexValue<Double>> |
AbstractRedisAsyncCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs) |
reactor.core.publisher.Mono<IncrexValue<Double>> |
AbstractRedisReactiveCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs) |
RedisFuture<IncrexValue<Long>> |
AbstractRedisAsyncCommands.increx(K key,
long amount,
IncrexArgs increxArgs) |
reactor.core.publisher.Mono<IncrexValue<Long>> |
AbstractRedisReactiveCommands.increx(K key,
long amount,
IncrexArgs increxArgs) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<IncrexValue<Long>> |
RedisStringAsyncCommands.increx(K key)
Increment the integer value of a key by 1 using INCREX.
|
RedisFuture<IncrexValue<Double>> |
RedisStringAsyncCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs)
Increment the float value of a key by the given amount with bounds, saturation, and expiration options.
|
RedisFuture<IncrexValue<Long>> |
RedisStringAsyncCommands.increx(K key,
long amount,
IncrexArgs increxArgs)
Increment the integer value of a key by the given amount with bounds, overflow, and expiration options.
|
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<IncrexValue<Long>> |
RedisStringReactiveCommands.increx(K key)
Increment the integer value of a key by 1 using INCREX.
|
reactor.core.publisher.Mono<IncrexValue<Double>> |
RedisStringReactiveCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs)
Increment the float value of a key by the given amount with bounds, saturation, and expiration options.
|
reactor.core.publisher.Mono<IncrexValue<Long>> |
RedisStringReactiveCommands.increx(K key,
long amount,
IncrexArgs increxArgs)
Increment the integer value of a key by the given amount with bounds, overflow, and expiration options.
|
| Modifier and Type | Method and Description |
|---|---|
IncrexValue<Long> |
RedisStringCommands.increx(K key)
Increment the integer value of a key by 1 using INCREX.
|
IncrexValue<Double> |
RedisStringCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs)
Increment the float value of a key by the given amount with bounds, saturation, and expiration options.
|
IncrexValue<Long> |
RedisStringCommands.increx(K key,
long amount,
IncrexArgs increxArgs)
Increment the integer value of a key by the given amount with bounds, overflow, and expiration options.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<IncrexValue<Long>> |
NodeSelectionStringAsyncCommands.increx(K key)
Increment the integer value of a key by 1 using INCREX.
|
AsyncExecutions<IncrexValue<Double>> |
NodeSelectionStringAsyncCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs)
Increment the float value of a key by the given amount with bounds, saturation, and expiration options.
|
AsyncExecutions<IncrexValue<Long>> |
NodeSelectionStringAsyncCommands.increx(K key,
long amount,
IncrexArgs increxArgs)
Increment the integer value of a key by the given amount with bounds, overflow, and expiration options.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<IncrexValue<Long>> |
NodeSelectionStringCommands.increx(K key)
Increment the integer value of a key by 1 using INCREX.
|
Executions<IncrexValue<Double>> |
NodeSelectionStringCommands.increx(K key,
double amount,
IncrexFloatArgs increxArgs)
Increment the float value of a key by the given amount with bounds, saturation, and expiration options.
|
Executions<IncrexValue<Long>> |
NodeSelectionStringCommands.increx(K key,
long amount,
IncrexArgs increxArgs)
Increment the integer value of a key by the given amount with bounds, overflow, and expiration options.
|
Copyright © 2026 lettuce.io. All rights reserved.