RecordExistsAction Enumeration

[Missing <summary> documentation for "T:Aerospike.Client.KVS.RecordExistsAction"]

Definition

Namespace: Aerospike.Client.KVS
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.0
C#
public enum RecordExistsAction

Members

Update0 Create or update record. Merge write command bins with existing bins.
UpdateOnly1 Update record only. Fail if record does not exist. Merge write command bins with existing bins.
Replace2 Create or replace record. Delete existing bins not referenced by write command bins. Supported by Aerospike server versions &gt;= 3.1.6.
ReplaceOnly3 Replace record only. Fail if record does not exist. Delete existing bins not referenced by write command bins. Supported by Aerospike server versions &gt;= 3.1.6.
CreateOnly4 Create only. Fail if record exists.

See Also