Introduction to Isolation and Locking
Learn about isolation and locking in PostgreSQL.
We'll cover the following...
The main feature of any database system is its implementation of concurrency and full respect for the system’s constraints and properties when multiple transactions are modifying the state of the system at the same time.
Transaction isolation
PostgreSQL is fully ACID compliant and implements transactions ...