Uses of Class
redis.clients.jedis.params.GetExParams
Packages that use GetExParams
Package
Description
This package contains the interfaces that contain methods representing Redis core commands.
This package contains the classes that represent optional parameters of core Redis commands.
-
Uses of GetExParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type GetExParamsModifier and TypeMethodDescriptionfinal CommandObject<byte[]> CommandObjects.getEx(byte[] key, GetExParams params) final CommandObject<String> CommandObjects.getEx(String key, GetExParams params) byte[]Jedis.getEx(byte[] key, GetExParams params) Jedis.getEx(String key, GetExParams params) Response<byte[]> MultiNodePipelineBase.getEx(byte[] key, GetExParams params) MultiNodePipelineBase.getEx(String key, GetExParams params) Response<byte[]> Pipeline.getEx(byte[] key, GetExParams params) Pipeline.getEx(String key, GetExParams params) Response<byte[]> TransactionBase.getEx(byte[] key, GetExParams params) TransactionBase.getEx(String key, GetExParams params) byte[]UnifiedJedis.getEx(byte[] key, GetExParams params) UnifiedJedis.getEx(String key, GetExParams params) -
Uses of GetExParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type GetExParamsModifier and TypeMethodDescriptionbyte[]StringBinaryCommands.getEx(byte[] key, GetExParams params) StringCommands.getEx(String key, GetExParams params) GetEx Command Get the value of key and optionally set its expiration.Response<byte[]> StringPipelineBinaryCommands.getEx(byte[] key, GetExParams params) StringPipelineCommands.getEx(String key, GetExParams params) -
Uses of GetExParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return GetExParamsModifier and TypeMethodDescriptionGetExParams.ex(long secondsToExpire) Set the specified expire time, in seconds.GetExParams.exAt(long seconds) Set the specified Unix time at which the key will expire, in seconds.static GetExParamsGetExParams.getExParams()GetExParams.persist()Remove the time to live associated with the key.GetExParams.px(long millisecondsToExpire) Set the specified expire time, in milliseconds.GetExParams.pxAt(long milliseconds) Set the specified Unix time at which the key will expire, in milliseconds.