| 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.sync |
Redis Cluster API for synchronous executed commands.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
AbstractRedisReactiveCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments) |
RedisFuture<String> |
AbstractRedisAsyncCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisJsonAsyncCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments)
Set or update one or more JSON values according to the specified
JsonMsetArgs
JSON.MSET is atomic, hence, all given additions or updates are either applied or not. |
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
RedisJsonReactiveCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments)
Set or update one or more JSON values according to the specified
JsonMsetArgs
JSON.MSET is atomic, hence, all given additions or updates are either applied or not. |
| Modifier and Type | Method and Description |
|---|---|
String |
RedisJsonCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments)
Set or update one or more JSON values according to the specified
JsonMsetArgs
JSON.MSET is atomic, hence, all given additions or updates are either applied or not. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisAdvancedClusterAsyncCommandsImpl.jsonMSet(List<JsonMsetArgs<K,V>> arguments) |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionJsonAsyncCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments)
Set or update one or more JSON values according to the specified
JsonMsetArgs
JSON.MSET is atomic, hence, all given additions or updates are either applied or not. |
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionJsonCommands.jsonMSet(List<JsonMsetArgs<K,V>> arguments)
Set or update one or more JSON values according to the specified
JsonMsetArgs
JSON.MSET is atomic, hence, all given additions or updates are either applied or not. |
Copyright © 2025 lettuce.io. All rights reserved.