Create expression that adds list values to a HLL set and returns HLL set.
The function assumes HLL bin already exists.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.4.0 (4.1.4)
Syntax
Parameters
- policy
- Type: Aerospike.Client HLLPolicy
write policy, use Default for default
- list
- Type: Aerospike.Client Exp
list bin or value expression of values to be added
- bin
- Type: Aerospike.Client Exp
HLL bin or value expression
Examples
// Add values to HLL bin "a" and check count > 7 Exp.GT( HLLExp.GetCount( HLLExp.Add(HLLPolicy.Default, Exp.Val(list), Exp.HLLBin("a"))), Exp.Val(7))
See Also