| 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 |
Client for Redis Cluster, see
RedisClusterClient. |
| 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 |
|---|---|
MSetExArgs |
MSetExArgs.ex(Duration timeout)
Set the specified expire time, in seconds.
|
static MSetExArgs |
MSetExArgs.Builder.ex(Duration timeout)
Creates new
MSetExArgs and enable EX. |
MSetExArgs |
MSetExArgs.exAt(Instant timestamp)
Set the specified expire at time using a posix
timestamp. |
static MSetExArgs |
MSetExArgs.Builder.exAt(Instant timestamp)
Creates new
MSetExArgs and enable EXAT. |
MSetExArgs |
MSetExArgs.keepttl()
Set the value and retain the existing TTL.
|
static MSetExArgs |
MSetExArgs.Builder.keepttl()
Creates new
MSetExArgs and enable KEEPTTL. |
MSetExArgs |
MSetExArgs.nx()
Only set the key if it does not already exist.
|
static MSetExArgs |
MSetExArgs.Builder.nx()
Creates new
MSetExArgs and enable NX. |
MSetExArgs |
MSetExArgs.px(Duration timeout)
Set the specified expire time, in milliseconds.
|
static MSetExArgs |
MSetExArgs.Builder.px(Duration timeout)
Creates new
MSetExArgs and enable PX. |
MSetExArgs |
MSetExArgs.pxAt(Instant timestamp)
Set the specified expire at time using a posix
timestamp. |
static MSetExArgs |
MSetExArgs.Builder.pxAt(Instant timestamp)
Creates new
MSetExArgs and enable PXAT. |
MSetExArgs |
MSetExArgs.xx()
Only set the key if it already exists.
|
static MSetExArgs |
MSetExArgs.Builder.xx()
Creates new
MSetExArgs and enable XX. |
| Modifier and Type | Method and Description |
|---|---|
Mono<Boolean> |
AbstractRedisReactiveCommands.msetex(Map<K,V> map,
MSetExArgs args) |
RedisFuture<Boolean> |
AbstractRedisAsyncCommands.msetex(Map<K,V> map,
MSetExArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Boolean> |
RedisStringAsyncCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<Boolean> |
RedisStringReactiveCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
| Modifier and Type | Method and Description |
|---|---|
Boolean |
RedisStringCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Boolean> |
RedisAdvancedClusterAsyncCommandsImpl.msetex(Map<K,V> map,
MSetExArgs args) |
Mono<Boolean> |
RedisAdvancedClusterReactiveCommandsImpl.msetex(Map<K,V> map,
MSetExArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Boolean> |
RedisAdvancedClusterAsyncCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
RedisFuture<Boolean> |
RedisClusterAsyncCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
AsyncExecutions<Boolean> |
NodeSelectionStringAsyncCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<Boolean> |
RedisClusterReactiveCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
Mono<Boolean> |
RedisAdvancedClusterReactiveCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<Boolean> |
NodeSelectionStringCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
Boolean |
RedisClusterCommands.msetex(Map<K,V> map,
MSetExArgs args)
Set multiple keys to multiple values with optional conditions and expiration.
|
Copyright © 2025 lettuce.io. All rights reserved.