| 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.
|
| io.lettuce.core.json.arguments |
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
AbstractRedisReactiveCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options) |
RedisFuture<String> |
AbstractRedisAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisJsonAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
RedisJsonReactiveCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
| Modifier and Type | Method and Description |
|---|---|
String |
RedisJsonCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionJsonAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionJsonCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
| Modifier and Type | Method and Description |
|---|---|
JsonSetArgs |
JsonSetArgs.defaults()
Set the key only if it already exists.
|
static JsonSetArgs |
JsonSetArgs.Builder.defaults()
Creates new empty
JsonSetArgs |
JsonSetArgs |
JsonSetArgs.nx()
Set the key only if it does not already exist.
|
static JsonSetArgs |
JsonSetArgs.Builder.nx()
Creates new
JsonSetArgs and sets NX. |
JsonSetArgs |
JsonSetArgs.xx()
Set the key only if it already exists.
|
static JsonSetArgs |
JsonSetArgs.Builder.xx()
Creates new
JsonSetArgs and sets XX. |
Copyright © 2025 lettuce.io. All rights reserved.