Unique key map write type.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 3.4.0.0 (3.4.1)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
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. |
See Also