Create HLL init operation with minhash bits.
Server creates a new HLL or resets an existing HLL.
Server does not return a value.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.0.0 (5.3.0)
Syntax
C#
public static Operation Init( HLLPolicy policy, string binName, int indexBitCount, int minHashBitCount )
Parameters
- policy
- Type: Aerospike.ClientHLLPolicy
write policy, use Default for default - binName
- Type: SystemString
name of bin - indexBitCount
- Type: SystemInt32
number of index bits. Must be between 4 and 16 inclusive. - minHashBitCount
- Type: SystemInt32
number of min hash bits. Must be between 4 and 51 inclusive. Also, indexBitCount + minHashBitCount must be <= 64.
Return Value
Type: OperationSee Also