Uses of Class
org.springframework.data.redis.connection.CompareCondition
Packages that use CompareCondition
Package
Description
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
-
Uses of CompareCondition in org.springframework.data.redis.connection
Methods in org.springframework.data.redis.connection that return CompareConditionModifier and TypeMethodDescription@Nullable CompareConditionSetCondition.getCompareCondition()ReactiveKeyCommands.DelexCommand.getCondition()static CompareConditionCompareCondition.ifDigestEquals(String hex16Digest) Create a newCompareConditionfordigestcomparison matching if the key value equals the givenhex16Digest.static CompareConditionCompareCondition.ifDigestNotEquals(String hex16Digest) Create a newCompareConditionfordigestcomparison matching if the key value does not equal the givenhex16Digest.static CompareConditionCompareCondition.ifEquals(byte[] value) Create a newCompareConditionfor value comparison matching if the key value equals the givenvalue.static CompareConditionCompareCondition.ifNotEquals(byte[] value) Create a newCompareConditionfor value comparison matching if the key value does not equal the givenvalue.Methods in org.springframework.data.redis.connection with parameters of type CompareConditionModifier and TypeMethodDescriptionReactiveKeyCommands.DelexCommand.condition(CompareCondition option) Creates a newReactiveKeyCommands.DelexCommandgiven aCompareCondition.default BooleanDefaultedRedisConnection.delex(byte[] key, CompareCondition condition) Deprecated.DefaultStringRedisConnection.delex(byte[] key, CompareCondition condition) DefaultStringRedisConnection.delex(String key, CompareCondition condition) ReactiveKeyCommands.delex(ByteBuffer key, CompareCondition condition) Delete a key based on the providedCompareConditionand value.RedisKeyCommands.delex(byte @NonNull [] key, @NonNull CompareCondition condition) Delete a key based on the providedCompareCondition.StringRedisConnection.delex(@NonNull String key, @NonNull CompareCondition condition) Delete a key based on the providedCompareCondition.
RedisCommandsProvider.keyCommands().