ReadModeSC Enumeration

Read policy for SC (strong consistency) namespaces. Determines SC read consistency options.

Definition

Namespace: Aerospike.Client.KVS
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.0
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.
AllowReplica2 Server may read from master or any full (non-migrating) replica. Increasing sequence of record versions is not guaranteed.
AllowUnavailable3 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