HLLExp Describe Method Aerospike
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: 4.0.2.0 (4.0.2)
Syntax

Examples

// 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