public interface IHyperLogLogCommands<K,V>
| Modifier and Type | Method and Description |
|---|---|
Long |
pfAdd(K key,
V... values)
Adds the given values to the key.
|
Long |
pfCount(K... keys)
Gets the current number of elements within the key.
|
Long |
pfMerge(K destination,
K... sourceKeys)
Merges all values of given sourceKeys into destination key.
|
Long pfAdd(K key, V... values)
key - must not be null.values - must not be null.Long pfCount(K... keys)
keys - must not be null or empty.Long pfMerge(K destination, K... sourceKeys)
destination - key of HyperLogLog to move source keys into.sourceKeys - must not be null or empty.Copyright © 2021. All rights reserved.