| 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 |
|---|---|
Flux<JsonValue> |
AbstractRedisReactiveCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths) |
RedisFuture<List<JsonValue>> |
AbstractRedisAsyncCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths) |
Flux<String> |
AbstractRedisReactiveCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths) |
RedisFuture<List<String>> |
AbstractRedisAsyncCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<JsonValue>> |
RedisJsonAsyncCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
RedisFuture<List<String>> |
RedisJsonAsyncCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form as raw strings.
|
| Modifier and Type | Method and Description |
|---|---|
Flux<JsonValue> |
RedisJsonReactiveCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
Flux<String> |
RedisJsonReactiveCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form as raw strings.
|
| Modifier and Type | Method and Description |
|---|---|
List<JsonValue> |
RedisJsonCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
List<String> |
RedisJsonCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form as raw strings.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<JsonValue>> |
NodeSelectionJsonAsyncCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
AsyncExecutions<List<String>> |
NodeSelectionJsonAsyncCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form as raw strings.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<List<JsonValue>> |
NodeSelectionJsonCommands.jsonGet(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form.
|
Executions<List<String>> |
NodeSelectionJsonCommands.jsonGetRaw(K key,
JsonGetArgs options,
JsonPath... jsonPaths)
Return the value at the specified path in JSON serialized form as raw strings.
|
| Modifier and Type | Method and Description |
|---|---|
JsonGetArgs |
JsonGetArgs.defaults()
Set empty arguments.
|
static JsonGetArgs |
JsonGetArgs.Builder.defaults()
Creates new
JsonGetArgs empty arguments. |
JsonGetArgs |
JsonGetArgs.indent(String indent)
Set the string used for indentation.
|
static JsonGetArgs |
JsonGetArgs.Builder.indent(String indent)
Creates new
JsonGetArgs and sets the string used for indentation. |
JsonGetArgs |
JsonGetArgs.newline(String newline)
Set the string used for newline.
|
static JsonGetArgs |
JsonGetArgs.Builder.newline(String newline)
Creates new
JsonGetArgs and sets the string used for newline. |
JsonGetArgs |
JsonGetArgs.space(String space)
Set the string used for spacing.
|
static JsonGetArgs |
JsonGetArgs.Builder.space(String space)
Creates new
JsonGetArgs and sets the string used for spacing. |
Copyright © 2025 lettuce.io. All rights reserved.