Java High-Performance Architecture
Jan 12, 2019 · Databases
Why Does Transaction A See 1 While Transaction B Sees 3? Understanding MySQL Repeatable Read
This article demonstrates how MySQL's repeatable-read isolation with consistent snapshots causes transaction A to read the original value 1 while transaction B reads the updated value 3, explaining InnoDB's MVCC versioning, active transaction arrays, and the distinction between consistent and current reads.
InnoDBMVCCRepeatable Read
0 likes · 10 min read
