HLLExp Add Method (HLLPolicy, Exp, Exp)Aerospike
Create expression that adds list values to a HLL set and returns HLL set. The function assumes HLL bin already exists.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.6.0 (4.2.6)
Syntax

Examples

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