Package io.quarkus.redis.datasource.keys
Interface ReactiveKeyCommands<K>
- Type Parameters:
K- the type of the keys, oftenString
- All Superinterfaces:
ReactiveRedisCommands
- All Known Implementing Classes:
ReactiveKeyCommandsImpl
Allows executing commands manipulating keys.
See the generic command list for further information about these
commands.
-
Method Summary
Modifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Boolean>Execute the command COPY.io.smallrye.mutiny.Uni<Boolean>Execute the command COPY.io.smallrye.mutiny.Uni<Integer>Execute the command DEL.io.smallrye.mutiny.Uni<String>Execute the command DUMP.io.smallrye.mutiny.Uni<Boolean>Execute the command EXISTS.io.smallrye.mutiny.Uni<Integer>Execute the command EXISTS.io.smallrye.mutiny.Uni<Boolean>Execute the command EXPIRE.io.smallrye.mutiny.Uni<Boolean>expire(K key, long seconds, ExpireArgs expireArgs) Execute the command EXPIRE.io.smallrye.mutiny.Uni<Boolean>Execute the command EXPIRE.io.smallrye.mutiny.Uni<Boolean>expire(K key, Duration duration, ExpireArgs expireArgs) Execute the command EXPIRE.io.smallrye.mutiny.Uni<Boolean>Execute the command EXPIREAT.io.smallrye.mutiny.Uni<Boolean>expireat(K key, long timestamp, ExpireArgs expireArgs) Execute the command EXPIREAT.io.smallrye.mutiny.Uni<Boolean>Execute the command EXPIREAT.io.smallrye.mutiny.Uni<Boolean>expireat(K key, Instant timestamp, ExpireArgs expireArgs) Execute the command EXPIREAT.io.smallrye.mutiny.Uni<Long>expiretime(K key) Execute the command EXPIRETIME.Execute the command KEYS.io.smallrye.mutiny.Uni<Boolean>Execute the command MOVE.io.smallrye.mutiny.Uni<Boolean>Execute the command PERSIST.io.smallrye.mutiny.Uni<Boolean>Execute the command PEXPIRE.io.smallrye.mutiny.Uni<Boolean>pexpire(K key, long milliseconds, ExpireArgs expireArgs) Execute the command PEXPIRE.io.smallrye.mutiny.Uni<Boolean>Execute the command PEXPIRE.io.smallrye.mutiny.Uni<Boolean>pexpire(K key, Duration duration, ExpireArgs expireArgs) Execute the command PEXPIRE.io.smallrye.mutiny.Uni<Boolean>Execute the command PEXPIREAT.io.smallrye.mutiny.Uni<Boolean>pexpireat(K key, long timestamp, ExpireArgs expireArgs) Execute the command PEXPIREAT.io.smallrye.mutiny.Uni<Boolean>Execute the command PEXPIREAT.io.smallrye.mutiny.Uni<Boolean>pexpireat(K key, Instant timestamp, ExpireArgs expireArgs) Execute the command PEXPIREAT.io.smallrye.mutiny.Uni<Long>pexpiretime(K key) Execute the command PEXPIRETIME.io.smallrye.mutiny.Uni<Long>Execute the command PTTL.io.smallrye.mutiny.Uni<K>Execute the command RANDOMKEY.io.smallrye.mutiny.Uni<Void>Execute the command RENAME.io.smallrye.mutiny.Uni<Boolean>Execute the command RENAMENX.scan()Execute the command SCAN.scan(KeyScanArgs args) Execute the command SCAN.io.smallrye.mutiny.Uni<Integer>Execute the command TOUCH.io.smallrye.mutiny.Uni<Long>Execute the command TTL.io.smallrye.mutiny.Uni<RedisValueType>Execute the command TYPE.io.smallrye.mutiny.Uni<Integer>Execute the command UNLINK.Methods inherited from interface io.quarkus.redis.datasource.ReactiveRedisCommands
getDataSource
-
Method Details
-
copy
Execute the command COPY. Summary: Copy a key Group: generic Requires Redis 6.2.0- Parameters:
source- the keydestination- the key- Returns:
truesource was copied.falsesource was not copied.
-
copy
Execute the command COPY. Summary: Copy a key Group: generic Requires Redis 6.2.0- Parameters:
source- the keydestination- the keycopyArgs- the additional arguments- Returns:
truesource was copied.falsesource was not copied.
-
del
Execute the command DEL. Summary: Delete one or multiple keys Group: generic Requires Redis 1.0.0- Parameters:
keys- the keys.- Returns:
- The number of keys that were removed.
-
dump
Execute the command DUMP. Summary: Return a serialized version of the value stored at the specified key. Group: generic Requires Redis 2.6.0- Parameters:
key- the key- Returns:
- the serialized value.
-
exists
Execute the command EXISTS. Summary: Determine if a key exists Group: generic Requires Redis 1.0.0- Parameters:
key- the key to check- Returns:
trueif the key exists,falseotherwise
-
exists
Execute the command EXISTS. Summary: Determine if a key exists Group: generic Requires Redis 1.0.0- Parameters:
keys- the keys to check- Returns:
- the number of keys that exist from those specified as arguments.
-
expire
Execute the command EXPIRE. Summary: Set a key's time to live in seconds Group: generic Requires Redis 1.0.0- Parameters:
key- the keyseconds- the new TTLexpireArgs- theEXPIREcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
expire
Execute the command EXPIRE. Summary: Set a key's time to live in seconds Group: generic Requires Redis 1.0.0- Parameters:
key- the keyduration- the new TTLexpireArgs- theEXPIREcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
expire
Execute the command EXPIRE. Summary: Set a key's time to live in seconds Group: generic Requires Redis 1.0.0- Parameters:
key- the keyseconds- the new TTL- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
expire
Execute the command EXPIRE. Summary: Set a key's time to live in seconds Group: generic Requires Redis 1.0.0- Parameters:
key- the keyduration- the new TTL- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
expireat
Execute the command EXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 1.2.0- Parameters:
key- the keytimestamp- the timestamp- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
expireat
Execute the command EXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 1.2.0- Parameters:
key- the keytimestamp- the timestamp- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
expireat
Execute the command EXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 1.2.0- Parameters:
key- the keytimestamp- the timestampexpireArgs- theEXPIREATcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
expireat
Execute the command EXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 1.2.0- Parameters:
key- the keytimestamp- the timestampexpireArgs- theEXPIREATcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
expiretime
Execute the command EXPIRETIME. Summary: Get the expiration Unix timestamp for a key Group: generic Requires Redis 7.0.0- Parameters:
key- the key- Returns:
- the expiration Unix timestamp in seconds,
-1if the key exists but has no associated expire. The Uni produces aRedisKeyNotFoundExceptionif the key does not exist.
-
keys
Execute the command KEYS. Summary: Find all keys matching the given pattern Group: generic Requires Redis 1.0.0- Parameters:
pattern- the glob-style pattern- Returns:
- the list of keys matching pattern.
-
move
Execute the command MOVE. Summary: Move a key to another database Group: generic Requires Redis 1.0.0- Parameters:
key- the key- Returns:
truekey was moved.falsekey was not moved.
-
persist
Execute the command PERSIST. Summary: Remove the expiration from a key Group: generic Requires Redis 2.2.0- Parameters:
key- the key- Returns:
truethe timeout was removed.falsekey does not exist or does not have an associated timeout.
-
pexpire
Execute the command PEXPIRE. Summary: Set a key's time to live in milliseconds Group: generic Requires Redis 2.6.0- Parameters:
key- the keyduration- the new TTLexpireArgs- thePEXPIREcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
pexpire
Execute the command PEXPIRE. Summary: Set a key's time to live in milliseconds Group: generic Requires Redis 2.6.0- Parameters:
key- the keyms- the new TTL- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
pexpire
Execute the command PEXPIRE. Summary: Set a key's time to live in milliseconds Group: generic Requires Redis 2.6.0- Parameters:
key- the keyduration- the new TTL- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
pexpire
Execute the command PEXPIRE. Summary: Set a key's time to live in milliseconds Group: generic Requires Redis 2.6.0- Parameters:
key- the keymilliseconds- the new TTLexpireArgs- thePEXPIREcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
pexpireat
Execute the command PEXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 2.6.0- Parameters:
key- the keytimestamp- the timestamp- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
pexpireat
Execute the command PEXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 2.6.0- Parameters:
key- the keytimestamp- the timestamp- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist.
-
pexpireat
Execute the command PEXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 2.6.0- Parameters:
key- the keytimestamp- the timestampexpireArgs- theEXPIREATcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
pexpireat
Execute the command PEXPIREAT. Summary: Set the expiration for a key as a UNIX timestamp Group: generic Requires Redis 2.6.0- Parameters:
key- the keytimestamp- the timestampexpireArgs- theEXPIREATcommand extra-arguments- Returns:
truethe timeout was set.falsethe timeout was not set. e.g. key doesn't exist, or operation skipped due to the provided arguments.
-
pexpiretime
Execute the command PEXPIRETIME. Summary: Get the expiration Unix timestamp for a key Group: generic Requires Redis 2.6.0- Parameters:
key- the key- Returns:
- the expiration Unix timestamp in milliseconds,
-1if the key exists but has no associated expire. The Uni produces aRedisKeyNotFoundExceptionif the key does not exist.
-
pttl
Execute the command PTTL. Summary: Get the time to live for a key in milliseconds Group: generic Requires Redis 2.6.0- Parameters:
key- the key- Returns:
- TTL in milliseconds,
-1if the key exists but has no associated expire. The Uni produces aRedisKeyNotFoundExceptionif the key does not exist.
-
randomkey
io.smallrye.mutiny.Uni<K> randomkey()Execute the command RANDOMKEY. Summary: Return a random key from the keyspace Group: generic Requires Redis 1.0.0- Returns:
- the random key, or
nullwhen the database is empty.
-
rename
Execute the command RENAME. Summary: Rename a key Group: generic Requires Redis 1.0.0- Parameters:
key- the keynewkey- the new key- Returns:
- a Uni completed with
nullwhen the operation completes successfully. Emits a failure is something wrong happens.
-
renamenx
Execute the command RENAMENX. Summary: Rename a key, only if the new key does not exist Group: generic Requires Redis 1.0.0- Parameters:
key- the keynewkey- the new key- Returns:
trueifkeywas renamed tonewkey.falseifnewkeyalready exists.
-
scan
ReactiveKeyScanCursor<K> scan()Execute the command SCAN. Summary: Incrementally iterate the keys space Group: generic Requires Redis 2.8.0- Returns:
- the cursor.
-
scan
Execute the command SCAN. Summary: Incrementally iterate the keys space Group: generic Requires Redis 2.8.0- Parameters:
args- the extra arguments- Returns:
- the cursor.
-
touch
Execute the command TOUCH. Summary: Alters the last access time of a key(s). Returns the number of existing keys specified. Group: generic Requires Redis 3.2.1- Parameters:
keys- the keys- Returns:
- The number of keys that were touched.
-
ttl
Execute the command TTL. Summary: Get the time to live for a key in seconds Group: generic Requires Redis 1.0.0- Parameters:
key- the key- Returns:
- TTL in seconds,
-1if the key exists but has no associated expire. The Uni produces aRedisKeyNotFoundExceptionif the key does not exist
-
type
Execute the command TYPE. Summary: Determine the type stored at key Group: generic Requires Redis 1.0.0- Parameters:
key- the key- Returns:
- type of key, or
NONEwhen key does not exist.
-
unlink
Execute the command UNLINK. Summary: Delete a key asynchronously in another thread. Otherwise, it is just asDEL, but non-blocking. Group: generic Requires Redis 4.0.0- Parameters:
keys- the keys- Returns:
- The number of keys that were unlinked.
-