module Aerospike::CDT::BitWriteFlags

BitWriteFlags specify bitwise operation policy write flags.

Constants

CREATE_ONLY

If the bin already exists, the operation will be denied. If the bin does not exist, a new bin will be created.

DEFAULT

Default allows create or update.

NO_FAIL

Will not raise error if operation is denied.

PARTIAL

Partial allows other valid operations to be committed if this operations is denied due to flag constraints.

UPDATE_ONLY

If the bin already exists, the bin will be overwritten. If the bin does not exist, the operation will be denied.