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.
|
io.lettuce.core.json |
Support for the JSON Redis Module.
|
io.lettuce.core.json.arguments |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonArrpop(K key) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonArrpop(K key) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonArrpop(K key,
JsonPath jsonPath) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonArrpop(K key,
JsonPath jsonPath) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonGet(K key,
JsonPath... jsonPaths) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonGet(K key,
JsonPath... jsonPaths) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonMGet(JsonPath jsonPath,
K... keys) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonMGet(JsonPath jsonPath,
K... keys) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.vgetattrAsJsonValue(K key,
V element) |
Flux<JsonValue> |
AbstractRedisReactiveCommands.vgetattrAsJsonValue(K key,
V element) |
Command<K,V,List<JsonValue>> |
RedisVectorSetCommandBuilder.vgetattrAsJsonValue(K key,
V element)
Create a new
VGETATTR command to get the attributes associated with an element in a vector set. |
Modifier and Type | Method and Description |
---|---|
VAddArgs |
VAddArgs.attributes(JsonValue attributes)
Set the attributes for the vector (SETATTR).
|
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonArrappend(K key,
JsonValue... values) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonArrappend(K key,
JsonValue... values) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values) |
RedisFuture<String> |
AbstractRedisAsyncCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value) |
Mono<String> |
AbstractRedisReactiveCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value) |
RedisFuture<String> |
AbstractRedisAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value) |
Mono<String> |
AbstractRedisReactiveCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value) |
RedisFuture<String> |
AbstractRedisAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options) |
Mono<String> |
AbstractRedisReactiveCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value) |
RedisFuture<List<Long>> |
AbstractRedisAsyncCommands.jsonStrappend(K key,
JsonValue value) |
Flux<Long> |
AbstractRedisReactiveCommands.jsonStrappend(K key,
JsonValue value) |
RedisFuture<Boolean> |
AbstractRedisAsyncCommands.vsetattr(K key,
V element,
JsonValue json) |
Mono<Boolean> |
AbstractRedisReactiveCommands.vsetattr(K key,
V element,
JsonValue json) |
Command<K,V,Boolean> |
RedisVectorSetCommandBuilder.vsetattr(K key,
V element,
JsonValue json)
Create a new
VSETATTR command to set or update the attributes for an element in a vector set. |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonArrpop(K key)
Remove and return
JsonValue at index -1 (last element) in the array at the JsonPath.ROOT_PATH |
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonArrpop(K key,
JsonPath jsonPath)
|
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index)
|
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonGet(K key,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonMGet(JsonPath jsonPath,
K... keys)
Return the values at the specified path from multiple key arguments.
|
RedisFuture<List<JsonValue>> |
RedisVectorSetAsyncCommands.vgetattrAsJsonValue(K key,
V element)
Returns the attributes associated with the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values)
Append the JSON values into the array at a given
JsonPath after the last element in a said array. |
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonArrappend(K key,
JsonValue... values)
Append the JSON values into the array at the
JsonPath.ROOT_PATH after the last element in a said array. |
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value)
|
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range)
|
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values)
|
RedisFuture<String> |
RedisJsonAsyncCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value)
|
RedisFuture<String> |
RedisJsonAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value)
Sets the JSON value at a given
JsonPath in the JSON document using defaults for the JsonSetArgs . |
RedisFuture<String> |
RedisJsonAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value)
Append the json-string values to the string at the provided
JsonPath in the JSON document. |
RedisFuture<List<Long>> |
RedisJsonAsyncCommands.jsonStrappend(K key,
JsonValue value)
Append the json-string values to the string at the
JsonPath.ROOT_PATH in the JSON document. |
RedisFuture<Boolean> |
RedisVectorSetAsyncCommands.vsetattr(K key,
V element,
JsonValue json)
Sets or updates the attributes for the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonArrpop(K key)
Remove and return
JsonValue at index -1 (last element) in the array at the JsonPath.ROOT_PATH |
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonArrpop(K key,
JsonPath jsonPath)
|
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index)
|
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonGet(K key,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonMGet(JsonPath jsonPath,
K... keys)
Return the values at the specified path from multiple key arguments.
|
Flux<JsonValue> |
RedisVectorSetReactiveCommands.vgetattrAsJsonValue(K key,
V element)
Returns the attributes associated with the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
Flux<Long> |
RedisJsonReactiveCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values)
Append the JSON values into the array at a given
JsonPath after the last element in a said array. |
Flux<Long> |
RedisJsonReactiveCommands.jsonArrappend(K key,
JsonValue... values)
Append the JSON values into the array at the
JsonPath.ROOT_PATH after the last element in a said array. |
Flux<Long> |
RedisJsonReactiveCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value)
|
Flux<Long> |
RedisJsonReactiveCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range)
|
Flux<Long> |
RedisJsonReactiveCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values)
|
Mono<String> |
RedisJsonReactiveCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value)
|
Mono<String> |
RedisJsonReactiveCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value)
Sets the JSON value at a given
JsonPath in the JSON document using defaults for the JsonSetArgs . |
Mono<String> |
RedisJsonReactiveCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
Flux<Long> |
RedisJsonReactiveCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value)
Append the json-string values to the string at the provided
JsonPath in the JSON document. |
Flux<Long> |
RedisJsonReactiveCommands.jsonStrappend(K key,
JsonValue value)
Append the json-string values to the string at the
JsonPath.ROOT_PATH in the JSON document. |
Mono<Boolean> |
RedisVectorSetReactiveCommands.vsetattr(K key,
V element,
JsonValue json)
Sets or updates the attributes for the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
List<JsonValue> |
RedisJsonCommands.jsonArrpop(K key)
Remove and return
JsonValue at index -1 (last element) in the array at the JsonPath.ROOT_PATH |
List<JsonValue> |
RedisJsonCommands.jsonArrpop(K key,
JsonPath jsonPath)
|
List<JsonValue> |
RedisJsonCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index)
|
List<JsonValue> |
RedisJsonCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
List<JsonValue> |
RedisJsonCommands.jsonGet(K key,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
List<JsonValue> |
RedisJsonCommands.jsonMGet(JsonPath jsonPath,
K... keys)
Return the values at the specified path from multiple key arguments.
|
List<JsonValue> |
RedisVectorSetCommands.vgetattrAsJsonValue(K key,
V element)
Returns the attributes associated with the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
List<Long> |
RedisJsonCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values)
Append the JSON values into the array at a given
JsonPath after the last element in a said array. |
List<Long> |
RedisJsonCommands.jsonArrappend(K key,
JsonValue... values)
Append the JSON values into the array at the
JsonPath.ROOT_PATH after the last element in a said array. |
List<Long> |
RedisJsonCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value)
|
List<Long> |
RedisJsonCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range)
|
List<Long> |
RedisJsonCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values)
|
String |
RedisJsonCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value)
|
String |
RedisJsonCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value)
Sets the JSON value at a given
JsonPath in the JSON document using defaults for the JsonSetArgs . |
String |
RedisJsonCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
List<Long> |
RedisJsonCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value)
Append the json-string values to the string at the provided
JsonPath in the JSON document. |
List<Long> |
RedisJsonCommands.jsonStrappend(K key,
JsonValue value)
Append the json-string values to the string at the
JsonPath.ROOT_PATH in the JSON document. |
Boolean |
RedisVectorSetCommands.vsetattr(K key,
V element,
JsonValue json)
Sets or updates the attributes for the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
RedisFuture<List<JsonValue>> |
RedisAdvancedClusterAsyncCommandsImpl.jsonMGet(JsonPath jsonPath,
K... keys) |
Modifier and Type | Method and Description |
---|---|
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonArrpop(K key)
Remove and return
JsonValue at index -1 (last element) in the array at the JsonPath.ROOT_PATH |
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonArrpop(K key,
JsonPath jsonPath)
|
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index)
|
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonGet(K key,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonMGet(JsonPath jsonPath,
K... keys)
Return the values at the specified path from multiple key arguments.
|
AsyncExecutions<List<JsonValue>> |
NodeSelectionVectorSetAsyncCommands.vgetattrAsJsonValue(K key,
V element)
Returns the attributes associated with the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values)
Append the JSON values into the array at a given
JsonPath after the last element in a said array. |
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonArrappend(K key,
JsonValue... values)
Append the JSON values into the array at the
JsonPath.ROOT_PATH after the last element in a said array. |
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value)
|
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range)
|
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values)
|
AsyncExecutions<String> |
NodeSelectionJsonAsyncCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value)
|
AsyncExecutions<String> |
NodeSelectionJsonAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value)
Sets the JSON value at a given
JsonPath in the JSON document using defaults for the JsonSetArgs . |
AsyncExecutions<String> |
NodeSelectionJsonAsyncCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value)
Append the json-string values to the string at the provided
JsonPath in the JSON document. |
AsyncExecutions<List<Long>> |
NodeSelectionJsonAsyncCommands.jsonStrappend(K key,
JsonValue value)
Append the json-string values to the string at the
JsonPath.ROOT_PATH in the JSON document. |
AsyncExecutions<Boolean> |
NodeSelectionVectorSetAsyncCommands.vsetattr(K key,
V element,
JsonValue json)
Sets or updates the attributes for the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonArrpop(K key)
Remove and return
JsonValue at index -1 (last element) in the array at the JsonPath.ROOT_PATH |
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonArrpop(K key,
JsonPath jsonPath)
|
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonArrpop(K key,
JsonPath jsonPath,
int index)
|
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonGet(K key,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonMGet(JsonPath jsonPath,
K... keys)
Return the values at the specified path from multiple key arguments.
|
Executions<List<JsonValue>> |
NodeSelectionVectorSetCommands.vgetattrAsJsonValue(K key,
V element)
Returns the attributes associated with the specified
element in the vector set stored at key . |
Modifier and Type | Method and Description |
---|---|
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonArrappend(K key,
JsonPath jsonPath,
JsonValue... values)
Append the JSON values into the array at a given
JsonPath after the last element in a said array. |
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonArrappend(K key,
JsonValue... values)
Append the JSON values into the array at the
JsonPath.ROOT_PATH after the last element in a said array. |
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value)
|
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonArrindex(K key,
JsonPath jsonPath,
JsonValue value,
JsonRangeArgs range)
|
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonArrinsert(K key,
JsonPath jsonPath,
int index,
JsonValue... values)
|
Executions<String> |
NodeSelectionJsonCommands.jsonMerge(K key,
JsonPath jsonPath,
JsonValue value)
|
Executions<String> |
NodeSelectionJsonCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value)
Sets the JSON value at a given
JsonPath in the JSON document using defaults for the JsonSetArgs . |
Executions<String> |
NodeSelectionJsonCommands.jsonSet(K key,
JsonPath jsonPath,
JsonValue value,
JsonSetArgs options)
Sets the JSON value at a given
JsonPath in the JSON document. |
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonStrappend(K key,
JsonPath jsonPath,
JsonValue value)
Append the json-string values to the string at the provided
JsonPath in the JSON document. |
Executions<List<Long>> |
NodeSelectionJsonCommands.jsonStrappend(K key,
JsonValue value)
Append the json-string values to the string at the
JsonPath.ROOT_PATH in the JSON document. |
Executions<Boolean> |
NodeSelectionVectorSetCommands.vsetattr(K key,
V element,
JsonValue json)
Sets or updates the attributes for the specified
element in the vector set stored at key . |
Modifier and Type | Interface and Description |
---|---|
interface |
JsonArray
|
interface |
JsonObject
|
Modifier and Type | Method and Description |
---|---|
JsonValue |
JsonParser.createJsonValue(ByteBuffer bytes)
Create a new
JsonValue from the provided ByteBuffer . |
JsonValue |
DefaultJsonParser.createJsonValue(ByteBuffer bytes) |
JsonValue |
JsonParser.createJsonValue(String value)
Create a new
JsonValue from the provided value. |
JsonValue |
DefaultJsonParser.createJsonValue(String value) |
JsonValue |
JsonParser.fromObject(Object object)
Create a new
JsonValue from the provided object. |
JsonValue |
DefaultJsonParser.fromObject(Object object) |
JsonValue |
JsonArray.get(int index)
Get the
JsonValue at the provided index. |
JsonValue |
JsonObject.get(String key)
Get the
JsonValue under the provided key. |
JsonValue |
JsonArray.getFirst()
Get the first
JsonValue in the array. |
JsonValue |
JsonParser.loadJsonValue(ByteBuffer bytes)
Loads the provided
ByteBuffer in a new JsonValue . |
JsonValue |
DefaultJsonParser.loadJsonValue(ByteBuffer bytes) |
JsonValue |
JsonArray.remove(int index)
Remove the
JsonValue at the provided index. |
JsonValue |
JsonObject.remove(String key)
Remove the
JsonValue under the provided key. |
JsonValue |
JsonArray.replace(int index,
JsonValue newElement)
|
Modifier and Type | Method and Description |
---|---|
List<JsonValue> |
JsonArray.asList()
|
Iterator<JsonValue> |
JsonArray.iterator()
|
Modifier and Type | Method and Description |
---|---|
JsonArray |
JsonArray.add(JsonValue element)
Add a new
JsonValue to the array. |
JsonObject |
JsonObject.put(String key,
JsonValue element)
Add (if there is no value with the same key already) or replace (if there is) a new
JsonValue to the object under
the provided key. |
JsonValue |
JsonArray.replace(int index,
JsonValue newElement)
|
Constructor and Description |
---|
JsonMsetArgs(K key,
JsonPath path,
JsonValue element)
|
Copyright © 2025 lettuce.io. All rights reserved.