N = replication factor. R = read quorum. W = write quorum. R + W > N guarantees every read intersects with the latest write — strong consistency without consensus.
R=W=QUORUM in N=3 means R+W=4>3: consistent. R=W=ONE means R+W=2<3: eventually consistent. Tune per query for the right point on the latency/consistency curve.