Package redis.clients.jedis.commands
Interface StringPipelineBinaryCommands
- All Superinterfaces:
BitPipelineBinaryCommands
- All Known Subinterfaces:
PipelineBinaryCommands
- All Known Implementing Classes:
ClusterPipeline,MultiNodePipelineBase,Pipeline,ReliableTransaction,ShardedPipeline,Transaction,TransactionBase
-
Method Summary
Modifier and TypeMethodDescriptionappend(byte[] key, byte[] value) decr(byte[] key) decrBy(byte[] key, long decrement) Response<byte[]> get(byte[] key) Response<byte[]> getDel(byte[] key) Response<byte[]> getEx(byte[] key, GetExParams params) Response<byte[]> getrange(byte[] key, long startOffset, long endOffset) Response<byte[]> getSet(byte[] key, byte[] value) incr(byte[] key) incrBy(byte[] key, long increment) incrByFloat(byte[] key, double increment) mget(byte[]... keys) mset(byte[]... keysvalues) msetnx(byte[]... keysvalues) psetex(byte[] key, long milliseconds, byte[] value) set(byte[] key, byte[] value) setex(byte[] key, long seconds, byte[] value) Response<byte[]> WARNING:SetParams.get()MUST NOT be used with this method.setnx(byte[] key, byte[] value) setrange(byte[] key, long offset, byte[] value) strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.strlen(byte[] key) Response<byte[]> substr(byte[] key, int start, int end)
-
Method Details
-
set
-
set
-
get
-
setGet
WARNING:SetParams.get()MUST NOT be used with this method. -
getDel
-
getEx
-
setrange
-
getrange
-
getSet
-
setnx
-
setex
-
psetex
-
mget
-
mset
-
msetnx
-
incr
-
incrBy
-
incrByFloat
-
decr
-
decrBy
-
append
-
substr
-
strlen
-
strAlgoLCSKeys
@Deprecated Response<LCSMatchResult> strAlgoLCSKeys(byte[] keyA, byte[] keyB, StrAlgoLCSParams params) Deprecated.STRALGO LCS command will be removed from Redis 7.LCScan be used instead of this method. -
lcs
-