HLLExp GetIntersectCount Method Aerospike
Create expression that returns estimated number of elements that would be contained by the intersection of these HLL objects.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.6.0 (4.2.6)
Syntax

Examples

// Intersect count of HLL bins "a" and "b"
HLLExp.GetIntersectCount(Exp.HLLBin("a"), Exp.HLLBin("b"))

// Intersect count of local HLL list with bin "b"
HLLExp.GetIntersectCount(Exp.Val(list), Exp.HLLBin("b"))
See Also