| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| redis.clients.jedis.params |
This package contains the classes that represent optional parameters of core Redis commands.
|
| Modifier and Type | Method and Description |
|---|---|
Response<java.lang.Long> |
PipeliningBase.hsetex(byte[] key,
HSetExParams params,
byte[] field,
byte[] value)
Sets the specified field in the hash stored at key to the specified value with additional parameters,
and optionally set their expiration.
|
long |
UnifiedJedis.hsetex(byte[] key,
HSetExParams params,
byte[] field,
byte[] value) |
CommandObject<java.lang.Long> |
CommandObjects.hsetex(byte[] key,
HSetExParams params,
byte[] field,
byte[] value) |
long |
Jedis.hsetex(byte[] key,
HSetExParams params,
byte[] field,
byte[] value) |
Response<java.lang.Long> |
PipeliningBase.hsetex(byte[] key,
HSetExParams params,
java.util.Map<byte[],byte[]> hash)
Sets the specified fields in the hash stored at key to the specified values with additional parameters,
and optionally set their expiration.
|
long |
UnifiedJedis.hsetex(byte[] key,
HSetExParams params,
java.util.Map<byte[],byte[]> hash) |
CommandObject<java.lang.Long> |
CommandObjects.hsetex(byte[] key,
HSetExParams params,
java.util.Map<byte[],byte[]> hash) |
long |
Jedis.hsetex(byte[] key,
HSetExParams params,
java.util.Map<byte[],byte[]> hash) |
Response<java.lang.Long> |
PipeliningBase.hsetex(java.lang.String key,
HSetExParams params,
java.util.Map<java.lang.String,java.lang.String> hash)
Sets the specified fields in the hash stored at key to the specified values with additional parameters,
and optionally set their expiration.
|
long |
UnifiedJedis.hsetex(java.lang.String key,
HSetExParams params,
java.util.Map<java.lang.String,java.lang.String> hash) |
CommandObject<java.lang.Long> |
CommandObjects.hsetex(java.lang.String key,
HSetExParams params,
java.util.Map<java.lang.String,java.lang.String> hash) |
long |
Jedis.hsetex(java.lang.String key,
HSetExParams params,
java.util.Map<java.lang.String,java.lang.String> hash) |
Response<java.lang.Long> |
PipeliningBase.hsetex(java.lang.String key,
HSetExParams params,
java.lang.String field,
java.lang.String value)
Sets the specified field in the hash stored at key to the specified value with additional parameters,
and optionally set their expiration.
|
long |
UnifiedJedis.hsetex(java.lang.String key,
HSetExParams params,
java.lang.String field,
java.lang.String value) |
CommandObject<java.lang.Long> |
CommandObjects.hsetex(java.lang.String key,
HSetExParams params,
java.lang.String field,
java.lang.String value) |
long |
Jedis.hsetex(java.lang.String key,
HSetExParams params,
java.lang.String field,
java.lang.String value) |
| Modifier and Type | Method and Description |
|---|---|
Response<java.lang.Long> |
HashPipelineBinaryCommands.hsetex(byte[] key,
HSetExParams params,
byte[] field,
byte[] value) |
long |
HashBinaryCommands.hsetex(byte[] key,
HSetExParams params,
byte[] field,
byte[] value)
Sets the specified fields in the hash stored at key to the specified values with additional parameters,
and optionally set their expiration.
|
Response<java.lang.Long> |
HashPipelineBinaryCommands.hsetex(byte[] key,
HSetExParams params,
java.util.Map<byte[],byte[]> hash) |
long |
HashBinaryCommands.hsetex(byte[] key,
HSetExParams params,
java.util.Map<byte[],byte[]> hash)
Sets the specified fields in the hash stored at key to the specified values with additional parameters,
and optionally set their expiration.
|
long |
HashCommands.hsetex(java.lang.String key,
HSetExParams params,
java.util.Map<java.lang.String,java.lang.String> hash)
Sets the specified fields in the hash stored at key to the specified values with additional parameters,
and optionally set their expiration.
|
Response<java.lang.Long> |
HashPipelineCommands.hsetex(java.lang.String key,
HSetExParams params,
java.util.Map<java.lang.String,java.lang.String> hash) |
long |
HashCommands.hsetex(java.lang.String key,
HSetExParams params,
java.lang.String field,
java.lang.String value)
Sets the specified fields in the hash stored at key to the specified values with additional parameters,
and optionally set their expiration.
|
Response<java.lang.Long> |
HashPipelineCommands.hsetex(java.lang.String key,
HSetExParams params,
java.lang.String field,
java.lang.String value) |
| Modifier and Type | Method and Description |
|---|---|
HSetExParams |
HSetExParams.fnx()
Only set the key if it does not already exist.
|
HSetExParams |
HSetExParams.fxx()
Only set the key if it already exist.
|
static HSetExParams |
HSetExParams.hSetExParams() |
Copyright © 2025. All rights reserved.