|
|
|
|
|
by throwawayboise
1745 days ago
|
|
The downside of "good ol' locking" is that you can end up with more fights and possibly deadlocks over who gets access and who has to wait. With Postgres/Oracle MVCC model, readers don't block writers and writers don't block readers. It's true that an awareness of the data concurrency model, whatever it is, is essential for developers to be able to write transactions that work as they intended. |
|