| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| Modifier and Type | Method and Description |
|---|---|
static HashImport |
HashImport.of(byte[]... fields)
Creates a template from the given binary field names.
|
static HashImport |
HashImport.of(java.lang.String... fields)
Creates a template from the given
String field names. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
Jedis.himportSet(byte[] key,
HashImport fieldset,
byte[]... values) |
Response<java.lang.String> |
Pipeline.himportSet(byte[] key,
HashImport fieldset,
byte[]... values) |
java.lang.String |
UnifiedJedis.himportSet(byte[] key,
HashImport fieldset,
byte[]... values) |
Response<java.lang.String> |
PipeliningBase.himportSet(byte[] key,
HashImport fieldset,
byte[]... values) |
java.lang.String |
Jedis.himportSet(java.lang.String key,
HashImport fieldset,
java.lang.String... values) |
Response<java.lang.String> |
Pipeline.himportSet(java.lang.String key,
HashImport fieldset,
java.lang.String... values) |
java.lang.String |
UnifiedJedis.himportSet(java.lang.String key,
HashImport fieldset,
java.lang.String... values) |
Response<java.lang.String> |
PipeliningBase.himportSet(java.lang.String key,
HashImport fieldset,
java.lang.String... values) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
HashBinaryCommands.himportSet(byte[] key,
HashImport fieldset,
byte[]... values)
Binary variant of
HashCommands.himportSet(String, HashImport, String...): creates a
single hash from values supplied positionally against a reusable HashImport field-set
template (HIMPORT SET, Redis 8.10). |
Response<java.lang.String> |
HashPipelineBinaryCommands.himportSet(byte[] key,
HashImport fieldset,
byte[]... values)
Binary variant of
HashPipelineCommands.himportSet(String, HashImport, String...) |
Response<java.lang.String> |
HashPipelineCommands.himportSet(java.lang.String key,
HashImport fieldset,
java.lang.String... values)
|
java.lang.String |
HashCommands.himportSet(java.lang.String key,
HashImport fieldset,
java.lang.String... values)
Creates a single hash from values supplied positionally against a reusable
HashImport
field-set template, using the server-side session field-set mechanism (HIMPORT SET,
Redis 8.10). |
Copyright © 2026. All rights reserved.