| Package | Description |
|---|---|
| io.valkey | |
| io.valkey.args |
This package contains the classes that represent arguments of Redis core commands.
|
| io.valkey.commands |
This package contains the interfaces that contain methods representing Redis core commands.
|
| Modifier and Type | Method and Description |
|---|---|
CommandObject<Long> |
CommandObjects.linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
Response<Long> |
PipeliningBase.linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
long |
Jedis.linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
long |
UnifiedJedis.linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
CommandObject<Long> |
CommandObjects.linsert(String key,
ListPosition where,
String pivot,
String value) |
Response<Long> |
PipeliningBase.linsert(String key,
ListPosition where,
String pivot,
String value) |
long |
Jedis.linsert(String key,
ListPosition where,
String pivot,
String value) |
long |
UnifiedJedis.linsert(String key,
ListPosition where,
String pivot,
String value) |
| Modifier and Type | Method and Description |
|---|---|
static ListPosition |
ListPosition.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListPosition[] |
ListPosition.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Response<Long> |
ListPipelineBinaryCommands.linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
long |
ListBinaryCommands.linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
Response<Long> |
ListPipelineCommands.linsert(String key,
ListPosition where,
String pivot,
String value) |
long |
ListCommands.linsert(String key,
ListPosition where,
String pivot,
String value)
Inserts element in the list stored at key either before or after the reference value pivot.
|
Copyright © 2024. All rights reserved.