Uses of Class
redis.clients.jedis.params.SetParams
-
Packages that use SetParams Package Description redis.clients.jedis redis.clients.jedis.commands redis.clients.jedis.params -
-
Uses of SetParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type SetParams Modifier and Type Method Description voidBinaryClient. set(byte[] key, byte[] value, SetParams params)StringBinaryJedis. set(byte[] key, byte[] value, SetParams params)Set the string value as value of the key.StringBinaryJedisCluster. set(byte[] key, byte[] value, SetParams params)StringBinaryShardedJedis. set(byte[] key, byte[] value, SetParams params)voidClient. set(String key, String value, SetParams params)StringJedis. set(String key, String value, SetParams params)Set the string value as value of the key.StringJedisCluster. set(String key, String value, SetParams params)Response<String>PipelineBase. set(byte[] key, byte[] value, SetParams params)Response<String>PipelineBase. set(String key, String value, SetParams params)StringShardedJedis. set(String key, String value, SetParams params) -
Uses of SetParams in redis.clients.jedis.commands
Methods in redis.clients.jedis.commands with parameters of type SetParams Modifier and Type Method Description StringBinaryJedisClusterCommands. set(byte[] key, byte[] value, SetParams params)StringBinaryJedisCommands. set(byte[] key, byte[] value, SetParams params)Response<String>BinaryRedisPipeline. set(byte[] key, byte[] value, SetParams params)voidCommands. set(String key, String value, SetParams params)StringJedisClusterCommands. set(String key, String value, SetParams params)StringJedisCommands. set(String key, String value, SetParams params)Response<String>RedisPipeline. set(String key, String value, SetParams params) -
Uses of SetParams in redis.clients.jedis.params
Methods in redis.clients.jedis.params that return SetParams Modifier and Type Method Description SetParamsSetParams. ex(int secondsToExpire)Set the specified expire time, in seconds.SetParamsSetParams. get()Return the old value stored at key, or nil when key did not exist.SetParamsSetParams. keepttl()Retain the time to live associated with the key.SetParamsSetParams. nx()Only set the key if it does not already exist.SetParamsSetParams. px(long millisecondsToExpire)Set the specified expire time, in milliseconds.static SetParamsSetParams. setParams()SetParamsSetParams. xx()Only set the key if it already exist.
-