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