Interface TransactionalHyperLogLogCommands<K,V>
-
- All Superinterfaces:
TransactionalRedisCommands
- All Known Implementing Classes:
BlockingTransactionalHyperLogLogCommandsImpl
public interface TransactionalHyperLogLogCommands<K,V> extends TransactionalRedisCommands
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpfadd(K key, V... values)Execute the command PFADD.voidpfcount(K... keys)Execute the command PFCOUNT.voidpfmerge(K destkey, K... sourcekeys)Execute the command PFMERGE.-
Methods inherited from interface io.quarkus.redis.datasource.TransactionalRedisCommands
getDataSource
-
-
-
-
Method Detail
-
pfadd
void pfadd(K key, V... values)
Execute the command PFADD. Summary: Adds the specified elements to the specified HyperLogLog. Group: hyperloglog Requires Redis 2.8.9- Parameters:
key- the keyvalues- the values
-
pfmerge
void pfmerge(K destkey, K... sourcekeys)
Execute the command PFMERGE. Summary: Merge N different HyperLogLogs into a single one. Group: hyperloglog Requires Redis 2.8.9- Parameters:
destkey- the keysourcekeys- the source keys
-
-