Class ReactiveHashCommandsImpl<K,F,V>
java.lang.Object
io.quarkus.redis.runtime.datasource.AbstractRedisCommands
io.quarkus.redis.runtime.datasource.AbstractHashCommands<K,F,V>
io.quarkus.redis.runtime.datasource.ReactiveHashCommandsImpl<K,F,V>
- All Implemented Interfaces:
ReactiveHashCommands<K,,F, V> ReactiveRedisCommands
public class ReactiveHashCommandsImpl<K,F,V>
extends AbstractHashCommands<K,F,V>
implements ReactiveHashCommands<K,F,V>
-
Field Summary
Fields inherited from class io.quarkus.redis.runtime.datasource.AbstractHashCommands
typeOfField, typeOfValueFields inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommands
marshaller, redis -
Constructor Summary
ConstructorsConstructorDescriptionReactiveHashCommandsImpl(ReactiveRedisDataSourceImpl redis, Type k, Type f, Type v) -
Method Summary
Modifier and TypeMethodDescriptionfinal io.smallrye.mutiny.Uni<Integer>Execute the command HDEL.io.smallrye.mutiny.Uni<Boolean>Execute the command HEXISTS.io.smallrye.mutiny.Uni<V>Execute the command HGET.Execute the command HGETALL.io.smallrye.mutiny.Uni<Long>Execute the command HINCRBY.io.smallrye.mutiny.Uni<Double>hincrbyfloat(K key, F field, double amount) Execute the command HINCRBYFLOAT.Execute the command HKEYS.io.smallrye.mutiny.Uni<Long>Execute the command HLEN.Execute the command HMGET.io.smallrye.mutiny.Uni<Void>Execute the command HMSET.io.smallrye.mutiny.Uni<F>hrandfield(K key) Execute the command HRANDFIELD.hrandfield(K key, long count) Execute the command HRANDFIELD.hrandfieldWithValues(K key, long count) Execute the command HRANDFIELD.Execute the command HSCAN.Execute the command HSCAN.io.smallrye.mutiny.Uni<Boolean>Execute the command HSET.io.smallrye.mutiny.Uni<Long>Execute the command HSET.io.smallrye.mutiny.Uni<Boolean>Execute the command HSETNX.io.smallrye.mutiny.Uni<Long>Execute the command HSTRLEN.Execute the command HVALS.Methods inherited from class io.quarkus.redis.runtime.datasource.AbstractHashCommands
_hdel, _hexists, _hget, _hgetall, _hincrby, _hincrbyfloat, _hkeys, _hlen, _hmget, _hmset, _hrandfield, _hrandfield, _hrandfieldWithValues, _hset, _hset, _hsetnx, _hstrlen, _hvals, decodeF, decodeFieldWithValueMap, decodeListOfField, decodeListOfValue, decodeMap, decodeOrderedMap, decodeVMethods inherited from class io.quarkus.redis.runtime.datasource.AbstractRedisCommands
execute, isMap
-
Constructor Details
-
ReactiveHashCommandsImpl
-
-
Method Details
-
getDataSource
- Specified by:
getDataSourcein interfaceReactiveRedisCommands- Returns:
- the data source.
-
hdel
Description copied from interface:ReactiveHashCommandsExecute the command HDEL. Summary: Delete one or more hash fields Group: hash Requires Redis 2.0.0- Specified by:
hdelin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- the number of fields that were removed from the hash, not including specified but non-existing fields.
-
hexists
Description copied from interface:ReactiveHashCommandsExecute the command HEXISTS. Summary: Determine if a hash field exists Group: hash Requires Redis 2.0.0- Specified by:
hexistsin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the value- Returns:
truethe hash contains field.falsethe hash does not contain field, or the key does not exist.
-
hget
Description copied from interface:ReactiveHashCommandsExecute the command HGET. Summary: Get the value of a hash field Group: hash Requires Redis 2.0.0- Specified by:
hgetin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the value- Returns:
- the value associated with
field, ornullwhenfieldis not present in the hash or the key does not exist.
-
hincrby
Description copied from interface:ReactiveHashCommandsExecute the command HINCRBY. Summary: Increment the integer value of a hash field by the given number Group: hash Requires Redis 2.0.0- Specified by:
hincrbyin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the value- Returns:
- the value at field after the increment operation.
-
hincrbyfloat
Description copied from interface:ReactiveHashCommandsExecute the command HINCRBYFLOAT. Summary: Increment the float value of a hash field by the given amount Group: hash Requires Redis 2.6.0- Specified by:
hincrbyfloatin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the value- Returns:
- the value of field after the increment.
-
hgetall
Description copied from interface:ReactiveHashCommandsExecute the command HGETALL. Summary: Get all the fields and values in a hash Group: hash Requires Redis 2.0.0- Specified by:
hgetallin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- the map fields -> values stored in the hash, or an empty map when
keydoes not exist.
-
hkeys
Description copied from interface:ReactiveHashCommandsExecute the command HKEYS. Summary: Get all the fields in a hash Group: hash Requires Redis 2.0.0- Specified by:
hkeysin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- list of fields in the hash, or an empty list when key does not exist.
-
hlen
Description copied from interface:ReactiveHashCommandsExecute the command HLEN. Summary: Get the number of fields in a hash Group: hash Requires Redis 2.0.0- Specified by:
hlenin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- number of fields in the hash, or 0 when key does not exist.
-
hmget
Description copied from interface:ReactiveHashCommandsExecute the command HMGET. Summary: Get the values of all the given hash fields Group: hash Requires Redis 2.0.0- Specified by:
hmgetin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfields- the fields- Returns:
- list of values associated with the given fields, in the same order as they are requested.
If a requested field does not exist, the returned map contains a
nullvalue for that field.
-
hmset
Description copied from interface:ReactiveHashCommandsExecute the command HMSET. Summary: Set multiple hash fields to multiple values Group: hash Requires Redis 2.0.0- Specified by:
hmsetin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keymap- the key/value map to set- Returns:
- a Uni completed with
nullwhen the operation completes
-
hrandfield
Description copied from interface:ReactiveHashCommandsExecute the command HRANDFIELD. Summary: Get one or multiple random fields from a hash Group: hash Requires Redis 6.2.0- Specified by:
hrandfieldin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- a random key from the hash,
nullif the key does not exist
-
hrandfield
Description copied from interface:ReactiveHashCommandsExecute the command HRANDFIELD. Summary: Get one or multiple random fields from a hash Group: hash Requires Redis 6.2.0- Specified by:
hrandfieldin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keycount- the number of random key to retrieve. Ifcountis positive, the selected keys are distinct. Ifcountis negative, the produced list can contain duplicated keys.- Returns:
- the list of keys, empty if the key does not exist
-
hrandfieldWithValues
Description copied from interface:ReactiveHashCommandsExecute the command HRANDFIELD. Summary: Get one or multiple random fields and the associated values from a hash Group: hash Requires Redis 6.2.0- Specified by:
hrandfieldWithValuesin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keycount- the number of random key to retrieve. Ifcountis positive, the selected keys are distinct. Ifcountis negative, the produced list can contain duplicated keys. These duplicates are not included in the producedMap.- Returns:
- the map containing the random keys and the associated values,
emptyif the key does not exist
-
hset
Description copied from interface:ReactiveHashCommandsExecute the command HSET. Summary: Set the string value of a hash field Group: hash Requires Redis 2.0.0- Specified by:
hsetin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the fieldvalue- the value- Returns:
trueif the value was set
-
hset
Description copied from interface:ReactiveHashCommandsExecute the command HSET. Summary: Set the string value of a hash field Group: hash Requires Redis 2.0.0- Specified by:
hsetin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keymap- the set of key -> value to add to the hash- Returns:
- the number of fields that were added.
-
hsetnx
Description copied from interface:ReactiveHashCommandsExecute the command HSETNX. Summary: Set the value of a hash field, only if the field does not exist Group: hash Requires Redis 2.0.0- Specified by:
hsetnxin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the valuevalue- the value- Returns:
truefield is a new field in the hash and value was set.falsefield already exists in the hash and no operation was performed.
-
hstrlen
Description copied from interface:ReactiveHashCommandsExecute the command HSTRLEN. Summary: Get the length of the value of a hash field Group: hash Requires Redis 3.2.0- Specified by:
hstrlenin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyfield- the value- Returns:
- the string length of the value associated with
field, or zero whenfieldis not present in the hash or key does not exist at all.
-
hvals
Description copied from interface:ReactiveHashCommandsExecute the command HVALS. Summary: Get all the values in a hash Group: hash Requires Redis 2.0.0- Specified by:
hvalsin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- list of values in the hash, or an empty list when key does not exist.
-
hscan
Description copied from interface:ReactiveHashCommandsExecute the command HSCAN. Summary: Incrementally iterate hash fields and associated values Group: hash Requires Redis 2.8.0- Specified by:
hscanin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the key- Returns:
- the cursor.
-
hscan
Description copied from interface:ReactiveHashCommandsExecute the command HSCAN. Summary: Incrementally iterate hash fields and associated values Group: hash Requires Redis 2.8.0- Specified by:
hscanin interfaceReactiveHashCommands<K,F, V> - Parameters:
key- the keyscanArgs- the additional argument- Returns:
- the cursor
-