Uses of Enum Class
org.springframework.data.redis.connection.RedisHashCommands.HashFieldSetOption
Packages that use RedisHashCommands.HashFieldSetOption
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
Core package for integrating Redis with Spring concepts.
-
Uses of RedisHashCommands.HashFieldSetOption in org.springframework.data.redis.connection
Subclasses with type arguments of type RedisHashCommands.HashFieldSetOption in org.springframework.data.redis.connectionModifier and TypeClassDescriptionstatic enum
HSETEX
command arguments forFNX
,FXX
.Methods in org.springframework.data.redis.connection that return RedisHashCommands.HashFieldSetOptionModifier and TypeMethodDescriptionReactiveHashCommands.HSetExCommand.getCondition()
RedisHashCommands.HashFieldSetOption.ifAllExist()
FXX
RedisHashCommands.HashFieldSetOption.ifNoneExist()
FNX
RedisHashCommands.HashFieldSetOption.upsert()
Do not set any additional command argument.Returns the enum constant of this class with the specified name.static RedisHashCommands.HashFieldSetOption[]
RedisHashCommands.HashFieldSetOption.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.springframework.data.redis.connection with parameters of type RedisHashCommands.HashFieldSetOptionModifier and TypeMethodDescriptiondefault Boolean
DefaultedRedisConnection.hSetEx
(byte[] key, Map<byte[], byte[]> hashes, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Deprecated.DefaultStringRedisConnection.hSetEx
(@NonNull byte[] key, @NonNull Map<byte[], byte[]> hashes, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) DefaultStringRedisConnection.hSetEx
(@NonNull String key, @NonNull Map<@NonNull String, String> hashes, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) ReactiveHashCommands.hSetEx
(ByteBuffer key, Map<ByteBuffer, ByteBuffer> fieldValueMap, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Set field-value pairs in hash at key with condition and expiration.RedisHashCommands.hSetEx
(byte @NonNull [] key, @NonNull Map<byte[], byte[]> hashes, RedisHashCommands.HashFieldSetOption hashFieldSetOption, Expiration expiration) Set field-value pairs in hash at key with optional condition and expiration.StringRedisConnection.hSetEx
(@NonNull String key, @NonNull Map<@NonNull String, String> hashes, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Set field-value pairs in hash at key with optional condition and expiration.ReactiveHashCommands.HSetExCommand.setWithConditionAndExpiration
(Map<ByteBuffer, ByteBuffer> fieldValueMap, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Creates a newReactiveHashCommands.HSetExCommand
for setting field-value pairs with condition and expiration. -
Uses of RedisHashCommands.HashFieldSetOption in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core with parameters of type RedisHashCommands.HashFieldSetOptionModifier and TypeMethodDescriptionvoid
BoundHashOperations.putAndExpire
(Map<? extends @NonNull HK, ? extends HV> m, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Set the value of one or more fields using data provided inm
at the bound key, and optionally set their expiration time or time-to-live (TTL).HashOperations.putAndExpire
(@NonNull H key, @NonNull Map<? extends @NonNull HK, ? extends HV> m, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Set multiple hash fields to multiple values using data provided inm
with optional condition and expiration.ReactiveHashOperations.putAndExpire
(H key, Map<? extends HK, ? extends HV> map, RedisHashCommands.HashFieldSetOption condition, Expiration expiration) Set multiple hash fields to multiple values using data provided inm
with optional condition and expiration.
RedisCommandsProvider.hashCommands()
}.