DDIA reading notes - chapter 7 Transactions

Chapter 6 of this book discusses Transactions. For decades, transactions have been the mechanism of choice for simplifying these issues. A transaction is a way for an application to group several reads and writes together into a logical unit. Conceptually, all the reads and writes in a transaction are executed as one operation: either the entire transaction succeeds (commit) or it fails(abort, rollback).
Transactions are created with a purpose: to simplify the programming model for applications accessing a database. By using transactions, the application is free to ignore specific potential error scenarios and concurrency issues.

Please refer to pdf to dive into the detailed notes.

本文标题:DDIA reading notes - chapter 7 Transactions

文章作者:Pylon, Syncher

发布时间:2023年05月20日 - 23:05

最后更新:2023年09月22日 - 17:09

原始链接:https://0x400.com/fundamental/storage/ddia-ch7-reading-notes/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。