| 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 <V> CompareCondition<V> |
CompareCondition.digestEq(String hex16Digest)
Create a digest-based equality condition; succeeds only if the current value's digest matches the given 16-character
lower-case hex digest.
|
static <V> CompareCondition<V> |
CompareCondition.digestNe(String hex16Digest)
Create a digest-based inequality condition; succeeds only if the current value's digest does not match the given
16-character lower-case hex digest.
|
static <V> CompareCondition<V> |
CompareCondition.valueEq(V value)
Create a value-based equality condition; succeeds only if the current value equals the given value.
|
static <V> CompareCondition<V> |
CompareCondition.valueNe(V value)
Create a value-based inequality condition; succeeds only if the current value does not equal the given value.
|
| Modifier and Type | Method and Description |
|---|---|
static SetArgs |
SetArgs.Builder.compareCondition(CompareCondition condition)
Creates new
SetArgs with compare condition CompareCondition |
<V> SetArgs |
SetArgs.compareCondition(CompareCondition<V> compareCondition)
Set a compare condition for the SET operation.
|
Mono<Long> |
AbstractRedisReactiveCommands.delex(K key,
CompareCondition<V> condition) |
RedisFuture<Long> |
AbstractRedisAsyncCommands.delex(K key,
CompareCondition<V> condition) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Long> |
RedisKeyAsyncCommands.delex(K key,
CompareCondition<V> compareCondition)
Delete the specified key if the compare condition matches.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<Long> |
RedisKeyReactiveCommands.delex(K key,
CompareCondition<V> compareCondition)
Delete the specified key if the compare condition matches.
|
| Modifier and Type | Method and Description |
|---|---|
Long |
RedisKeyCommands.delex(K key,
CompareCondition<V> compareCondition)
Delete the specified key if the compare condition matches.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<Long> |
NodeSelectionKeyAsyncCommands.delex(K key,
CompareCondition<V> compareCondition)
Delete the specified key if the compare condition matches.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<Long> |
NodeSelectionKeyCommands.delex(K key,
CompareCondition<V> compareCondition)
Delete the specified key if the compare condition matches.
|
Copyright © 2025 lettuce.io. All rights reserved.