From a3f92ac0bebe53470039b5365f468c3d4ae16af1 Mon Sep 17 00:00:00 2001 From: Brian Nichols Date: Fri, 14 Jun 2024 11:59:20 -0400 Subject: [PATCH] CLIENT-3002 Change as_policy_read_mode_sc doc from server to client perspective. --- src/include/aerospike/as_policy.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/include/aerospike/as_policy.h b/src/include/aerospike/as_policy.h index cffc30600..186f83294 100644 --- a/src/include/aerospike/as_policy.h +++ b/src/include/aerospike/as_policy.h @@ -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,