Module: Aerospike::GenerationPolicy

Defined in:
lib/aerospike/policy/generation_policy.rb

Constant Summary collapse

NONE =

Do not use record generation to restrict writes.

0
EXPECT_GEN_EQUAL =

Update/delete record if expected generation is equal to server generation. Otherwise, fail.

1
EXPECT_GEN_GT =

Update/delete record if expected generation greater than the server generation. Otherwise, fail. This is useful for restore after backup.

2