How do ACID and database transactions work?

前端 未结 8 615
迷失自我
迷失自我 2020-11-29 14:31

What is the relationship between ACID and database transaction?

Does ACID give database transaction or is it the same thing?

Could someone enlighten this top

8条回答
  •  既然无缘
    2020-11-29 15:24

    Transaction can be defined as a collection of task that are considered as minimum processing unit. Each minimum processing unit can not be divided further.

    All transaction must contain four properties that commonly known as ACID properties. i.e ACID are the group of properties of any transaction.

    • Atomicity :
    • Consistency
    • Isolation
    • Durability

提交回复
热议问题