Map write bit flags.
Requires server versions >= 4.3.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
[FlagsAttribute] public enum MapWriteFlags
Members
Member name | Value | Description | |
---|---|---|---|
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. |
See Also