HLLExp MembersAerospike

The HLLExp type exposes the following members.
Constructors

  NameDescription
Public methodHLLExp
Initializes a new instance of the HLLExp class
Back to Top
Methods

  NameDescription
Public methodStatic memberAdd(HLLPolicy, Exp, Exp)
Create expression that adds list values to a HLL set and returns HLL set. The function assumes HLL bin already exists.
Public methodStatic memberAdd(HLLPolicy, Exp, Exp, Exp)
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.
Public methodStatic memberAdd(HLLPolicy, Exp, Exp, Exp, Exp)
Create expression that adds values to a HLL set and returns HLL set. If HLL bin does not exist, use indexBitCount and minHashBitCount to create HLL set.
Public methodStatic memberDescribe
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.
Public methodStatic memberGetCount
Create expression that returns estimated number of elements in the HLL bin.
Public methodStatic memberGetIntersectCount
Create expression that returns estimated number of elements that would be contained by the intersection of these HLL objects.
Public methodStatic memberGetSimilarity
Create expression that returns estimated similarity of these HLL objects as a 64 bit float.
Public methodStatic memberGetUnion
Create expression that returns a HLL object that is the union of all specified HLL objects in the list with the HLL bin.
Public methodStatic memberGetUnionCount
Create expression that returns estimated number of elements that would be contained by the union of these HLL objects.
Public methodStatic memberMayContain
Create expression that returns one if HLL bin may contain any item in the list.
Back to Top
See Also