Uses of Class
io.quarkus.redis.datasource.keys.KeyScanArgs
-
Packages that use KeyScanArgs Package Description io.quarkus.redis.datasource.keys io.quarkus.redis.runtime.datasource -
-
Uses of KeyScanArgs in io.quarkus.redis.datasource.keys
Methods in io.quarkus.redis.datasource.keys that return KeyScanArgs Modifier and Type Method Description KeyScanArgs
KeyScanArgs. count(long count)
Sets the max number of items in each batch.KeyScanArgs
KeyScanArgs. match(String pattern)
Sets aMATCH
patternKeyScanArgs
KeyScanArgs. type(RedisValueType type)
You can use the TYPE option to ask SCAN to only return objects that match a given type, allowing you to iterate through the database looking for keys of a specific type.Methods in io.quarkus.redis.datasource.keys with parameters of type KeyScanArgs Modifier and Type Method Description KeyScanCursor<K>
KeyCommands. scan(KeyScanArgs args)
Execute the command SCAN.ReactiveKeyScanCursor<K>
ReactiveKeyCommands. scan(KeyScanArgs args)
Execute the command SCAN. -
Uses of KeyScanArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type KeyScanArgs Modifier and Type Method Description KeyScanCursor<K>
BlockingKeyCommandsImpl. scan(KeyScanArgs args)
ReactiveKeyScanCursor<K>
ReactiveKeyCommandsImpl. scan(KeyScanArgs args)
-