How do database vendors implement transactions?

前端 未结 1 1165
深忆病人
深忆病人 2020-12-25 14:29

When working with database it is often essential to use transactions. Say for example that I want to transfer a certain amount of money from account A to account B. This inv

相关标签:
1条回答
  • 2020-12-25 15:01

    The ACID - Implementations page on wikipedia will get you started on write-ahead logging, shadow paging and multi-version concurrency control. Follow the links to find more.

    Each DBMS vendor implements their own algorithms, often several different ones depending on the context, full ACID or relaxed requirements, distributed transaction consistency requirements etc...

    0 讨论(0)
提交回复
热议问题