5 ms·
Does this impact postgres backed applications?
by saurabhnanda 7y ago
Does this impact postgres backed applications?
- dunkelheit 7y agoYes! 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 https://www.postgresql.org/docs/11/transaction-iso.html