Create expression that returns estimated number of elements in the HLL bin.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp GetCount( Exp bin )
Parameters
- bin
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// HLL bin "a" count > 7 Exp.GT(HLLExp.GetCount(Exp.HLLBin("a")), Exp.Val(7))
See Also