# Strong answer covers: # - Consistent hashing with 128+ virtual nodes per physical node # - N=3 replicas, leaderless with quorum (W=2, R=2) # - Write: hash key → find 3 nodes on ring → write to all → ack after W=2 succeed # - Read: query R=2 replicas → return latest version (vector clock comparison) # - Hinted handoff for temporary failures, Merkle trees for anti-entropy repair