| 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 |
|---|---|
java.util.List<byte[]> |
Jedis.blmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
java.util.List<byte[]> |
UnifiedJedis.blmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
Response<java.util.List<byte[]>> |
PipeliningBase.blmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
CommandObject<java.util.List<byte[]>> |
CommandObjects.blmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
java.util.List<java.lang.String> |
Jedis.blmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
java.util.List<java.lang.String> |
UnifiedJedis.blmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
Response<java.util.List<java.lang.String>> |
PipeliningBase.blmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
CommandObject<java.util.List<java.lang.String>> |
CommandObjects.blmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params) |
java.util.List<byte[]> |
Jedis.lmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
java.util.List<byte[]> |
UnifiedJedis.lmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
Response<java.util.List<byte[]>> |
PipeliningBase.lmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
CommandObject<java.util.List<byte[]>> |
CommandObjects.lmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
java.util.List<java.lang.String> |
Jedis.lmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
java.util.List<java.lang.String> |
UnifiedJedis.lmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
Response<java.util.List<java.lang.String>> |
PipeliningBase.lmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
CommandObject<java.util.List<java.lang.String>> |
CommandObjects.lmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<byte[]> |
ListBinaryCommands.blmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params)
|
Response<java.util.List<byte[]>> |
ListPipelineBinaryCommands.blmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params)
|
Response<java.util.List<java.lang.String>> |
ListPipelineCommands.blmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params)
|
java.util.List<java.lang.String> |
ListCommands.blmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
double timeout,
LMoveMParams params)
BLMOVEM Command
The blocking variant of
ListCommands.lmovem(String, String, ListDirection, ListDirection, LMoveMParams). |
java.util.List<byte[]> |
ListBinaryCommands.lmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params)
|
Response<java.util.List<byte[]>> |
ListPipelineBinaryCommands.lmovem(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params)
|
Response<java.util.List<java.lang.String>> |
ListPipelineCommands.lmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params)
Pipeline variant of
ListCommands.lmovem(String, String, ListDirection, ListDirection, LMoveMParams). |
java.util.List<java.lang.String> |
ListCommands.lmovem(java.lang.String srcKey,
java.lang.String dstKey,
ListDirection from,
ListDirection to,
LMoveMParams params)
LMOVEM Command
Atomically move multiple elements from the head (LEFT) or tail (RIGHT) of the list at
srcKey onto the head (LEFT) or tail (RIGHT) of the list at dstKey, and return
them in destination order. |
| Modifier and Type | Method and Description |
|---|---|
LMoveMParams |
LMoveMParams.count(int count,
ListMoveOrder order)
Move up to
count elements (same semantics as the count argument of
LPOP), ordered by order. |
LMoveMParams |
LMoveMParams.exactly(int count,
ListMoveOrder order)
Move exactly
count elements, or nothing (a null reply) if the source list does
not hold that many, ordered by order. |
static LMoveMParams |
LMoveMParams.lMoveMParams() |
Copyright © 2026. All rights reserved.