module Aerospike::CDT::HLLWriteFlags
Map write bit flags. Requires server versions >= 4.3.
Constants
- ALLOW_FOLD
ALLOW_FOLD
allows the resulting set to be the minimum of provided index bits. Also, allow the usage of less precise HLL algorithms when minHash bits of all participating sets do not match.- CREATE_ONLY
CREATE_ONLY
behaves like the following: If the bin already exists, the operation will be denied. If the bin does not exist, a new bin will be created.- DEFAULT
Default is Default. Allow create or update.
- NO_FAIL
NO_FAIL
does not raise error if operation is denied.- UPDATE_ONLY
UPDATE_ONLY
behaves like the following: If the bin already exists, the bin will be overwritten. If the bin does not exist, the operation will be denied.