module Aerospike::CDT::MapWriteFlags
Map write bit flags. Requires server versions >= 4.3.
Constants
- CREATE_ONLY
If the key already exists, the item will be denied. If the key does not exist, a new item will be created.
- DEFAULT
Default. Allow create or update.
- NO_FAIL
Do not raise error, if a map item is denied due to write flag constraints.
- PARTIAL
Allow other valid map items to be committed, if a map item is denied due to write flag constraints.
- UPDATE_ONLY
If the key already exists, the item will be overwritten. If the key does not exist, the item will be denied.