Module: Aerospike::CDT::HLLWriteFlags

Defined in:
lib/aerospike/cdt/hll_write_flags.rb

Overview

Map write bit flags. Requires server versions >= 4.3.

Constant Summary collapse

DEFAULT =

Default is Default. Allow create or update.

0
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.

1
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.

2
NO_FAIL =

NO_FAIL does not raise error if operation is denied.

4
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.

8