HLLOperation.Init(HLLPolicy, String, Int32, Int32) Method
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.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Operation Init(
HLLPolicy policy,
string binName,
int indexBitCount,
int minHashBitCount
)
- policy HLLPolicy
- write policy, use Default for default
- binName String
- name of bin
- indexBitCount Int32
- number of index bits. Must be between 4 and 16 inclusive.
- minHashBitCount Int32
-
number of min hash bits. Must be between 4 and 51 inclusive.
Also, indexBitCount + minHashBitCount must be <= 64.
Operation