1. Read-Your-Writes Consistency

After you write something, you will always see your own update on subsequent reads — even if replicas lag.


image.png

Example:

1. Update user table: 
    UPDATE user SET name = "Bakhrom" WHERE id = 123
2. Read that data:
    SELECT name FROM user WHERE id = 123
3. You will see name = "Bakhrom", not the old version

Methods:

Session / Sticky Routing

Used by:


Client-side version tracking

Used by: