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 enumHSETEXcommand arguments forFNX,FXX.Methods in org.springframework.data.redis.connection that return RedisHashCommands.HashFieldSetOptionModifier and TypeMethodDescriptionReactiveHashCommands.HSetExCommand.getCondition()RedisHashCommands.HashFieldSetOption.ifAllExist()FXXRedisHashCommands.HashFieldSetOption.ifNoneExist()FNXRedisHashCommands.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 BooleanDefaultedRedisConnection.hSetEx(byte[] key, Map<byte[], byte[]> hashes, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable Expiration expiration) Deprecated.DefaultStringRedisConnection.hSetEx(@NonNull byte[] key, @NonNull Map<byte[], byte[]> hashes, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable 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, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable Expiration expiration) Set field-value pairs in hash at key with condition and expiration.RedisHashCommands.hSetEx(byte @NonNull [] key, @NonNull Map<byte[], byte[]> hashes, @NonNull RedisHashCommands.HashFieldSetOption hashFieldSetOption, @Nullable 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, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable 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, @Nullable Expiration expiration) Creates a newReactiveHashCommands.HSetExCommandfor 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 TypeMethodDescriptionvoidBoundHashOperations.putAndExpire(Map<? extends @NonNull HK, ? extends HV> m, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable Expiration expiration) Set the value of one or more fields using data provided inmat 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, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable Expiration expiration) Set multiple hash fields to multiple values using data provided inmwith optional condition and expiration.ReactiveHashOperations.putAndExpire(H key, Map<? extends HK, ? extends HV> map, @NonNull RedisHashCommands.HashFieldSetOption condition, @Nullable Expiration expiration) Set multiple hash fields to multiple values using data provided inmwith optional condition and expiration.
RedisCommandsProvider.hashCommands()}.