RecordExistsAction EnumerationAerospike
How to handle writes when the record already exists.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.0.0.0 (3.0.1)
Syntax

Members

  Member nameValueDescription
UPDATE0 Update record.
EXPECT_GEN_EQUAL1 Update/delete record if expected generation is equal to server generation. Otherwise, fail.
EXPECT_GEN_GT2 Update/delete record if expected generation greater than the server generation. Otherwise, fail. This is useful for restore after backup.
FAIL3 Fail if record exists.
See Also