Skip to content

Commit

Permalink
CLIENT-3002 Change as_policy_read_mode_sc doc from server to client p…
Browse files Browse the repository at this point in the history
…erspective.
  • Loading branch information
BrianNichols committed Jun 14, 2024
1 parent b797013 commit a3f92ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/include/aerospike/as_policy.h
Original file line number Diff line number Diff line change
Expand Up @@ -334,24 +334,24 @@ typedef enum as_policy_read_mode_sc_e {

/**
* Ensures this client will only see an increasing sequence of record versions.
* Server only reads from master. This is the default.
* Client only reads from master. This is the default.
*/
AS_POLICY_READ_MODE_SC_SESSION,

/**
* Ensures ALL clients will only see an increasing sequence of record versions.
* Server only reads from master.
* Ensures all clients will only see an increasing sequence of record versions.
* Client only reads from master.
*/
AS_POLICY_READ_MODE_SC_LINEARIZE,

/**
* Server may read from master or any full (non-migrating) replica.
* Client may read from master or any full (non-migrating) replica.
* Increasing sequence of record versions is not guaranteed.
*/
AS_POLICY_READ_MODE_SC_ALLOW_REPLICA,

/**
* Server may read from master or any full (non-migrating) replica or from unavailable
* Client may read from master or any full (non-migrating) replica or from unavailable
* partitions. Increasing sequence of record versions is not guaranteed.
*/
AS_POLICY_READ_MODE_SC_ALLOW_UNAVAILABLE,
Expand Down

0 comments on commit a3f92ac

Please sign in to comment.