| 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.
|
| Modifier and Type | Method and Description |
|---|---|
static <K> HashImport<K> |
HashImport.of(Function<Long,K> idCodec,
K... fields)
Create a fieldset for a key type other than
String, naming it by applying idCodec to a generated sequence
number. |
static HashImport<String> |
HashImport.of(String... fields)
Create a fieldset for
String-keyed connections. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
AbstractRedisAsyncCommands.himportSet(K key,
HashImport<K> fieldset,
V... values) |
reactor.core.publisher.Mono<String> |
AbstractRedisReactiveCommands.himportSet(K key,
HashImport<K> fieldset,
V... values) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisHashAsyncCommands.himportSet(K key,
HashImport<K> fieldset,
V... values)
Create the hash stored at
key from fieldset, sending only the values, positionally paired to the
fieldset's field names. |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<String> |
RedisHashReactiveCommands.himportSet(K key,
HashImport<K> fieldset,
V... values)
Create the hash stored at
key from fieldset, sending only the values, positionally paired to the
fieldset's field names. |
| Modifier and Type | Method and Description |
|---|---|
String |
RedisHashCommands.himportSet(K key,
HashImport<K> fieldset,
V... values)
Create the hash stored at
key from fieldset, sending only the values, positionally paired to the
fieldset's field names. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionHashAsyncCommands.himportSet(K key,
HashImport<K> fieldset,
V... values)
Create the hash stored at
key from fieldset, sending only the values, positionally paired to the
fieldset's field names. |
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionHashCommands.himportSet(K key,
HashImport<K> fieldset,
V... values)
Create the hash stored at
key from fieldset, sending only the values, positionally paired to the
fieldset's field names. |
Copyright © 2026 lettuce.io. All rights reserved.