public interface ListPipelineBinaryCommands
Modifier and Type | Method and Description |
---|---|
Response<byte[]> |
blmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to,
double timeout) |
Response<KeyValue<byte[],java.util.List<byte[]>>> |
blmpop(double timeout,
ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],java.util.List<byte[]>>> |
blmpop(double timeout,
ListDirection direction,
int count,
byte[]... keys) |
Response<KeyValue<byte[],byte[]>> |
blpop(double timeout,
byte[]... keys) |
Response<java.util.List<byte[]>> |
blpop(int timeout,
byte[]... keys) |
Response<KeyValue<byte[],byte[]>> |
brpop(double timeout,
byte[]... keys) |
Response<java.util.List<byte[]>> |
brpop(int timeout,
byte[]... keys) |
Response<byte[]> |
brpoplpush(byte[] source,
byte[] destination,
int timeout) |
Response<byte[]> |
lindex(byte[] key,
long index) |
Response<java.lang.Long> |
linsert(byte[] key,
ListPosition where,
byte[] pivot,
byte[] value) |
Response<java.lang.Long> |
llen(byte[] key) |
Response<byte[]> |
lmove(byte[] srcKey,
byte[] dstKey,
ListDirection from,
ListDirection to) |
Response<KeyValue<byte[],java.util.List<byte[]>>> |
lmpop(ListDirection direction,
byte[]... keys) |
Response<KeyValue<byte[],java.util.List<byte[]>>> |
lmpop(ListDirection direction,
int count,
byte[]... keys) |
Response<byte[]> |
lpop(byte[] key) |
Response<java.util.List<byte[]>> |
lpop(byte[] key,
int count) |
Response<java.lang.Long> |
lpos(byte[] key,
byte[] element) |
Response<java.lang.Long> |
lpos(byte[] key,
byte[] element,
LPosParams params) |
Response<java.util.List<java.lang.Long>> |
lpos(byte[] key,
byte[] element,
LPosParams params,
long count) |
Response<java.lang.Long> |
lpush(byte[] key,
byte[]... args) |
Response<java.lang.Long> |
lpushx(byte[] key,
byte[]... args) |
Response<java.util.List<byte[]>> |
lrange(byte[] key,
long start,
long stop) |
Response<java.lang.Long> |
lrem(byte[] key,
long count,
byte[] value) |
Response<java.lang.String> |
lset(byte[] key,
long index,
byte[] value) |
Response<java.lang.String> |
ltrim(byte[] key,
long start,
long stop) |
Response<byte[]> |
rpop(byte[] key) |
Response<java.util.List<byte[]>> |
rpop(byte[] key,
int count) |
Response<byte[]> |
rpoplpush(byte[] srckey,
byte[] dstkey) |
Response<java.lang.Long> |
rpush(byte[] key,
byte[]... args) |
Response<java.lang.Long> |
rpushx(byte[] key,
byte[]... args) |
Response<java.lang.Long> rpush(byte[] key, byte[]... args)
Response<java.lang.Long> lpush(byte[] key, byte[]... args)
Response<java.lang.Long> llen(byte[] key)
Response<java.util.List<byte[]>> lrange(byte[] key, long start, long stop)
Response<java.lang.String> ltrim(byte[] key, long start, long stop)
Response<byte[]> lindex(byte[] key, long index)
Response<java.lang.String> lset(byte[] key, long index, byte[] value)
Response<java.lang.Long> lrem(byte[] key, long count, byte[] value)
Response<byte[]> lpop(byte[] key)
Response<java.util.List<byte[]>> lpop(byte[] key, int count)
Response<java.lang.Long> lpos(byte[] key, byte[] element)
Response<java.lang.Long> lpos(byte[] key, byte[] element, LPosParams params)
Response<java.util.List<java.lang.Long>> lpos(byte[] key, byte[] element, LPosParams params, long count)
Response<byte[]> rpop(byte[] key)
Response<java.util.List<byte[]>> rpop(byte[] key, int count)
Response<java.lang.Long> linsert(byte[] key, ListPosition where, byte[] pivot, byte[] value)
Response<java.lang.Long> lpushx(byte[] key, byte[]... args)
Response<java.lang.Long> rpushx(byte[] key, byte[]... args)
Response<java.util.List<byte[]>> blpop(int timeout, byte[]... keys)
Response<java.util.List<byte[]>> brpop(int timeout, byte[]... keys)
Response<byte[]> rpoplpush(byte[] srckey, byte[] dstkey)
Response<byte[]> brpoplpush(byte[] source, byte[] destination, int timeout)
Response<byte[]> lmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to)
Response<byte[]> blmove(byte[] srcKey, byte[] dstKey, ListDirection from, ListDirection to, double timeout)
Response<KeyValue<byte[],java.util.List<byte[]>>> lmpop(ListDirection direction, byte[]... keys)
Response<KeyValue<byte[],java.util.List<byte[]>>> lmpop(ListDirection direction, int count, byte[]... keys)
Response<KeyValue<byte[],java.util.List<byte[]>>> blmpop(double timeout, ListDirection direction, byte[]... keys)
Response<KeyValue<byte[],java.util.List<byte[]>>> blmpop(double timeout, ListDirection direction, int count, byte[]... keys)
Copyright © 2024. All rights reserved.