| Package | Description |
|---|---|
| redis.clients.jedis | |
| redis.clients.jedis.args | |
| redis.clients.jedis.commands |
| Modifier and Type | Method and Description |
|---|---|
Response<byte[]> |
Pipeline.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<byte[]> |
MultiNodePipelineBase.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<byte[]> |
TransactionBase.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<byte[]> |
CommandObjects.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<String> |
Pipeline.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<String> |
MultiNodePipelineBase.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<String> |
TransactionBase.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<String> |
CommandObjects.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<KeyValue<byte[],List<byte[]>>> |
Pipeline.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
MultiNodePipelineBase.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
TransactionBase.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
Jedis.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
UnifiedJedis.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
CommandObject<KeyValue<byte[],List<byte[]>>> |
CommandObjects.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
Pipeline.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
MultiNodePipelineBase.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
TransactionBase.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
Jedis.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
UnifiedJedis.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
CommandObject<KeyValue<byte[],List<byte[]>>> |
CommandObjects.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<String,List<String>>> |
Pipeline.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
MultiNodePipelineBase.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
TransactionBase.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
Jedis.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
UnifiedJedis.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
Pipeline.blmpop(long timeout,
ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
MultiNodePipelineBase.blmpop(long timeout,
ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
TransactionBase.blmpop(long timeout,
ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
Jedis.blmpop(long timeout,
ListDirection direction,
String... keys) |
KeyValue<String,List<String>> |
UnifiedJedis.blmpop(long timeout,
ListDirection direction,
String... keys) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.blmpop(long timeout,
ListDirection direction,
String... keys) |
Response<byte[]> |
Pipeline.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<byte[]> |
MultiNodePipelineBase.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<byte[]> |
TransactionBase.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<byte[]> |
CommandObjects.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<String> |
Pipeline.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
Response<String> |
MultiNodePipelineBase.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
Response<String> |
TransactionBase.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<String> |
CommandObjects.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
Response<KeyValue<byte[],List<byte[]>>> |
Pipeline.lmpop(ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
MultiNodePipelineBase.lmpop(ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
TransactionBase.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,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
Pipeline.lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
MultiNodePipelineBase.lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
TransactionBase.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<byte[],List<byte[]>>> |
CommandObjects.lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<String,List<String>>> |
Pipeline.lmpop(ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
MultiNodePipelineBase.lmpop(ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
TransactionBase.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,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
Pipeline.lmpop(ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
MultiNodePipelineBase.lmpop(ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
TransactionBase.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) |
CommandObject<KeyValue<String,List<String>>> |
CommandObjects.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 |
|---|---|
byte[] |
ListBinaryCommands.blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<byte[]> |
ListPipelineBinaryCommands.blmove(byte[] srcKey,
byte[] 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<String> |
ListPipelineCommands.blmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to,
double timeout) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.blmpop(long timeout,
ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.blmpop(long timeout,
ListDirection direction,
int count,
byte[]... keys) |
KeyValue<String,List<String>> |
ListCommands.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.blmpop(long timeout,
ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
ListCommands.blmpop(long timeout,
ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.blmpop(long timeout,
ListDirection direction,
String... keys) |
byte[] |
ListBinaryCommands.lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<byte[]> |
ListPipelineBinaryCommands.lmove(byte[] srcKey,
byte[] 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<String> |
ListPipelineCommands.lmove(String srcKey,
String dstKey,
ListDirection from,
ListDirection to) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.lmpop(ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.lmpop(ListDirection direction,
byte[]... keys) |
KeyValue<byte[],List<byte[]>> |
ListBinaryCommands.lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],List<byte[]>>> |
ListPipelineBinaryCommands.lmpop(ListDirection direction,
int count,
byte[]... keys) |
KeyValue<String,List<String>> |
ListCommands.lmpop(ListDirection direction,
int count,
String... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.lmpop(ListDirection direction,
int count,
String... keys) |
KeyValue<String,List<String>> |
ListCommands.lmpop(ListDirection direction,
String... keys) |
Response<KeyValue<String,List<String>>> |
ListPipelineCommands.lmpop(ListDirection direction,
String... keys) |
Copyright © 2022. All rights reserved.