Create expression that returns indexBitCount and minHashBitCount used to create HLL bin
in a list of longs. list[0] is indexBitCount and list[1] is minHashBitCount.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp Describe( Exp bin )
Parameters
- bin
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// Bin "a" indexBitCount < 10 Exp.LT( ListExp.GetByIndex(ListReturnType.VALUE, Exp.Type.INT, Exp.Val(0), HLLExp.describe(Exp.HLLBin("a"))), Exp.Val(10))
See Also