ReadModeSC Enumeration

Read policy for SC (strong consistency) namespaces.

Determines SC read consistency options.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public enum ReadModeSC

Members

SESSION0 Ensures this client will only see an increasing sequence of record versions. Server only reads from master. This is the default.
LINEARIZE1 Ensures ALL clients will only see an increasing sequence of record versions. Server only reads from master.
ALLOW_REPLICA2 Server may read from master or any full (non-migrating) replica. Increasing sequence of record versions is not guaranteed.
ALLOW_UNAVAILABLE3 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