[Missing <summary> documentation for "T:Aerospike.Client.KVS.RecordExistsAction"]
public enum RecordExistsAction
Update | 0 | Create or update record. Merge write command bins with existing bins. |
UpdateOnly | 1 | Update record only. Fail if record does not exist. Merge write command bins with existing bins. |
Replace | 2 | Create or replace record. Delete existing bins not referenced by write command bins. Supported by Aerospike server versions >= 3.1.6. |
ReplaceOnly | 3 | Replace record only. Fail if record does not exist. Delete existing bins not referenced by write command bins. Supported by Aerospike server versions >= 3.1.6. |
CreateOnly | 4 | Create only. Fail if record exists. |