MapWriteMode Enumeration
Unique key map write type.
This enum should only be used for server versions < 4.3.
are recommended for server versions >= 4.3.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
UPDATE | 0 |
If the key already exists, the item will be overwritten.
If the key does not exist, a new item will be created.
|
UPDATE_ONLY | 1 |
If the key already exists, the item will be overwritten.
If the key does not exist, the write will fail.
|
CREATE_ONLY | 2 |
If the key already exists, the write will fail.
If the key does not exist, a new item will be created.
|