K - Key type.V - Value type.public interface NodeSelectionHLLCommands<K,V>
| Modifier and Type | Method and Description |
|---|---|
Executions<Long> |
pfadd(K key,
V... values)
Adds the specified elements to the specified HyperLogLog.
|
Executions<Long> |
pfcount(K... keys)
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
|
Executions<String> |
pfmerge(K destkey,
K... sourcekeys)
Merge N different HyperLogLogs into a single one.
|
Executions<Long> pfadd(K key, V... values)
key - the key.values - the values.Executions<String> pfmerge(K destkey, K... sourcekeys)
destkey - the destination key.sourcekeys - the source key.OK.Executions<Long> pfcount(K... keys)
keys - the keys.PFADD.Copyright © 2021 lettuce.io. All rights reserved.