HLLExp Add Method (HLLPolicy, Exp, Exp, Exp)Aerospike
Create expression that adds values to a HLL set and returns HLL set. If HLL bin does not exist, use indexBitCount to create HLL bin.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.1.0 (4.1.1)
Syntax

Examples

// Add values to HLL bin "a" and check count > 7
Exp.GT(
  HLLExp.GetCount(
    HLLExp.Add(HLLPolicy.Default, Exp.Val(list), Exp.Val(10), Exp.HLLBin("a"))),
  Exp.Val(7))
See Also