mvcc.hlp
来自「关系型数据库 Postgresql 6.5.2」· HLP 代码 · 共 14 行
HLP
14 行
.pgaw:Help.f.t insert end \"Multi-Version Concurrency Control" {title} "Multi-Version Concurrency Control (MVCC) is an advanced technique for\improving database performance in a multi-user environment. " {} "Vadim Mikheev" {bold} " provided the implementation for Postgres. " {} "Introduction" {bold} "Unlike most other database systems which use locks for concurrency control, Postgres maintains data consistency by using a multiversion model. This means that while querying a database each transaction sees a snapshot of data (a database version) as it was some time ago, regardless of the current state of the underlying data. This protects the transaction from viewing inconsistent data that could be caused by (other) concurrent transaction updates on the same data rows, providing transaction isolation for each database session. The main difference between multiversion and lock models is that in MVCC locks acquired for querying (reading) data don't conflict with locks acquired for writing data and so reading never blocks writing and writing never blocks reading. " {} "Isolation levels" {link isolation}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?