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: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp GetIntersectCount( Exp list, Exp bin )
Parameters
- list
- Type: Aerospike.ClientExp
- bin
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// 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