Hacker News new | ask | show | jobs
by saurabhnanda 2572 days ago
Does this impact postgres backed applications?
1 comments

Yes! The default isolation level in postgres is READ COMMITTED which is rather weak and allows for the types of concurrency bugs discussed in the article (unless you use SELECT FOR UPDATE or some other kind of locking).

https://www.postgresql.org/docs/11/transaction-iso.html