Module: Aerospike::CDT::BitWriteFlags
- Defined in:
- lib/aerospike/cdt/bit_write_flags.rb
Overview
BitWriteFlags specify bitwise operation policy write flags.
Constant Summary collapse
- DEFAULT =
Default allows create or update.
0
- CREATE_ONLY =
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 =
If the bin already exists, the bin will be overwritten. If the bin does not exist, the operation will be denied.
2
- NO_FAIL =
Will not raise error if operation is denied.
4
- PARTIAL =
Partial allows other valid operations to be committed if this operations is denied due to flag constraints.
8