Create expression that returns a HLL object that is the union of all specified HLL objects
in the list with the HLL bin.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.1.0 (4.1.1)
Syntax
Examples
// Union of HLL bins "a" and "b" HLLExp.GetUnion(Exp.HLLBin("a"), Exp.HLLBin("b")) // Union of local HLL list with bin "b" HLLExp.GetUnion(Exp.Val(list), Exp.HLLBin("b"))
See Also