Read policy for SC (strong consistency) namespaces.
Namespace: Aerospike.ClientDetermines SC read consistency options.
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.9.12.0 (3.9.12)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
SESSION | 0 | Ensures this client will only see an increasing sequence of record versions. Server only reads from master. This is the default. | |
LINEARIZE | 1 | Ensures ALL clients will only see an increasing sequence of record versions. Server only reads from master. | |
ALLOW_REPLICA | 2 | Server may read from master or any full (non-migrating) replica. Increasing sequence of record versions is not guaranteed. | |
ALLOW_UNAVAILABLE | 3 | Server may read from master or any full (non-migrating) replica or from unavailable partitions. Increasing sequence of record versions is not guaranteed. |
See Also