MapWriteFlags Enumeration

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

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
[FlagsAttribute]
public enum MapWriteFlags

Members

DEFAULT0 Default. Allow create or update.
CREATE_ONLY1 If the key already exists, the item will be denied. If the key does not exist, a new item will be created.
UPDATE_ONLY2 If the key already exists, the item will be overwritten. If the key does not exist, the item will be denied.
NO_FAIL4 Do not raise error if a map item is denied due to write flag constraints.
PARTIAL8 Allow other valid map items to be committed if a map item is denied due to write flag constraints.

See Also