adspace


Put some light on multi-version concurrency control?

Answer Posted / Sunil Kumar Gautam

Multi-Version Concurrency Control (MVCC) is a technique used by PostgreSQL to allow multiple transactions to access the database concurrently without blocking each other. MVCC allows each transaction to see a consistent snapshot of data, even if other transactions are modifying that data simultaneously. This is achieved by storing multiple versions of each row and keeping track of the transaction IDs that have modified the data.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the latest version of postgresql?

959