Uses of Class
org.springframework.data.redis.connection.RedisZSetCommands.ZAddArgs
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
-
Uses of RedisZSetCommands.ZAddArgs in org.springframework.data.redis.connection
Modifier and TypeMethodDescriptionRedisZSetCommands.ZAddArgs.ch()
Only update elements that already exist.static RedisZSetCommands.ZAddArgs
RedisZSetCommands.ZAddArgs.empty()
RedisZSetCommands.ZAddArgs.gt()
Only update existing elements if the new score is greater than the current score.static RedisZSetCommands.ZAddArgs
RedisZSetCommands.ZAddArgs.ifExists()
static RedisZSetCommands.ZAddArgs
RedisZSetCommands.ZAddArgs.ifNotExists()
RedisZSetCommands.ZAddArgs.lt()
Only update existing elements if the new score is less than the current score.RedisZSetCommands.ZAddArgs.nx()
Only update elements that already exist.RedisZSetCommands.ZAddArgs.xx()
Don't update already existing elements.Modifier and TypeMethodDescriptiondefault Boolean
DefaultedRedisConnection.zAdd
(byte[] key, double score, byte[] value, RedisZSetCommands.ZAddArgs args) Deprecated.default Long
DefaultedRedisConnection.zAdd
(byte[] key, Set<Tuple> tuples, RedisZSetCommands.ZAddArgs args) Deprecated.in favor ofRedisCommandsProvider.zSetCommands()
}.DefaultStringRedisConnection.zAdd
(byte[] key, double score, byte[] value, RedisZSetCommands.ZAddArgs args) DefaultStringRedisConnection.zAdd
(byte[] key, Set<Tuple> tuples, RedisZSetCommands.ZAddArgs args) DefaultStringRedisConnection.zAdd
(String key, double score, String value, RedisZSetCommands.ZAddArgs args) DefaultStringRedisConnection.zAdd
(String key, Set<StringRedisConnection.StringTuple> tuples, RedisZSetCommands.ZAddArgs args) RedisZSetCommands.zAdd
(byte[] key, double score, byte[] value, RedisZSetCommands.ZAddArgs args) RedisZSetCommands.zAdd
(byte[] key, Set<Tuple> tuples, RedisZSetCommands.ZAddArgs args) StringRedisConnection.zAdd
(String key, double score, String value, RedisZSetCommands.ZAddArgs args) StringRedisConnection.zAdd
(String key, Set<StringRedisConnection.StringTuple> tuples, RedisZSetCommands.ZAddArgs args)
RedisCommandsProvider.zSetCommands()
}.