| 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 |
|---|---|
static IncrexArgs |
IncrexArgs.Builder.enx() |
static IncrexArgs |
IncrexArgs.Builder.ex(long seconds) |
static IncrexArgs |
IncrexArgs.Builder.exAt(long timestampSeconds) |
IncrexArgs |
IncrexArgs.lbound(long lbound) |
static IncrexArgs |
IncrexArgs.Builder.lbound(long lbound) |
static IncrexArgs |
IncrexArgs.Builder.persist() |
static IncrexArgs |
IncrexArgs.Builder.px(long milliseconds) |
static IncrexArgs |
IncrexArgs.Builder.pxAt(long timestampMilliseconds) |
static IncrexArgs |
IncrexArgs.Builder.saturate() |
IncrexArgs |
IncrexArgs.ubound(long ubound) |
static IncrexArgs |
IncrexArgs.Builder.ubound(long ubound) |
| Modifier and Type | Method and Description |
|---|---|
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,
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,
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,
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,
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,
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.