MapWriteFlags Enumeration
Map write bit flags.
Requires server versions >= 4.3.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
[FlagsAttribute]
public enum MapWriteFlags
DEFAULT | 0 |
Default. Allow create or update.
|
CREATE_ONLY | 1 |
If the key already exists, the item will be denied.
If the key does not exist, a new item will be created.
|
UPDATE_ONLY | 2 |
If the key already exists, the item will be overwritten.
If the key does not exist, the item will be denied.
|
NO_FAIL | 4 |
Do not raise error if a map item is denied due to write flag constraints.
|
PARTIAL | 8 |
Allow other valid map items to be committed if a map item is denied due to
write flag constraints.
|