| 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<byte[]> |
CommandObjects.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<byte[]> |
PipeliningBase.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
byte[] |
Jedis.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout)
Pop an element from a list, push it to another list and return it; or block until one is available
|
byte[] |
UnifiedJedis.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
CommandObject<String> |
CommandObjects.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<String> |
PipeliningBase.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
String |
Jedis.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
String |
UnifiedJedis.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
CommandObject<KeyValue<byte[],List<byte[]>>> |
CommandObjects.blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
PipeliningBase.blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
Jedis.blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
UnifiedJedis.blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
CommandObject<KeyValue<byte[],List<byte[]>>> |
CommandObjects.blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
PipeliningBase.blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
Jedis.blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
UnifiedJedis.blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.blmpop(double timeout,
ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
PipeliningBase.blmpop(double timeout,
ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
Jedis.blmpop(double timeout,
ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
UnifiedJedis.blmpop(double timeout,
ListDirection direction,
int count,
String... keys) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.blmpop(double timeout,
ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
PipeliningBase.blmpop(double timeout,
ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
Jedis.blmpop(double timeout,
ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
UnifiedJedis.blmpop(double timeout,
ListDirection direction,
String... keys) |
CommandObject<byte[]> |
CommandObjects.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<byte[]> |
PipeliningBase.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
byte[] |
Jedis.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to)
Pop an element from a list, push it to another list and return it
|
byte[] |
UnifiedJedis.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
CommandObject<String> |
CommandObjects.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
Response<String> |
PipeliningBase.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
String |
Jedis.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
String |
UnifiedJedis.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
CommandObject<KeyValue<byte[],List<byte[]>>> |
CommandObjects.lmpop(ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
PipeliningBase.lmpop(ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
Jedis.lmpop(ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
UnifiedJedis.lmpop(ListDirection direction,
byte[]... keys) |
CommandObject<KeyValue<byte[],List<byte[]>>> |
CommandObjects.lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
PipeliningBase.lmpop(ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
Jedis.lmpop(ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
UnifiedJedis.lmpop(ListDirection direction,
int count,
byte[]... keys) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.lmpop(ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
PipeliningBase.lmpop(ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
Jedis.lmpop(ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
UnifiedJedis.lmpop(ListDirection direction,
int count,
String... keys) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.lmpop(ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
PipeliningBase.lmpop(ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
Jedis.lmpop(ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
UnifiedJedis.lmpop(ListDirection direction,
String... keys) |
| Modifier and Type | Method and Description |
|---|---|
static ListDirection |
ListDirection.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListDirection[] |
ListDirection.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Response<byte[]> |
ListPipelineBinaryCommands.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
byte[] |
ListBinaryCommands.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<String> |
ListPipelineCommands.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
String |
ListCommands.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout)
Pop an element from a list, push it to another list and return it; or block until one is available
|
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.blmpop(double timeout,
ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
ListCommands.blmpop(double timeout,
ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.blmpop(double timeout,
ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
ListCommands.blmpop(double timeout,
ListDirection direction,
String... keys) |
Response<byte[]> |
ListPipelineBinaryCommands.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
byte[] |
ListBinaryCommands.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<String> |
ListPipelineCommands.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
String |
ListCommands.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to)
Pop an element from a list, push it to another list and return it
|
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.lmpop(ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.lmpop(ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.lmpop(ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.lmpop(ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
ListCommands.lmpop(ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.lmpop(ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
ListCommands.lmpop(ListDirection direction,
String... keys) |
Copyright © 2024. All rights reserved.