Snapshot Isolation - CI/CD用語集の定義
snapshot isolation は、各トランザクションが開始時点でのデータベースの一貫したスナップショットから読み取る並行性レベルで、読み取り側が書き込み側をブロックすることはありません。ほとんどのアノマリーを回避しますが、write skew は依然として許容し得ます。
関連ガイド
Transaction Isolation - CI/CD Glossary DefinitionTransaction isolation defines how concurrent transactions see each other’s uncommitted work, from read-uncomm…
Optimistic Locking - CI/CD Glossary DefinitionOptimistic locking lets transactions proceed without locks and checks a version column at commit, retrying if…
Write-Ahead Log - CI/CD Glossary DefinitionA write-ahead log records every change before it is applied, so a database can recover to a consistent state…