1 |
ACID stands for:
-
atomicity: a transaction is an indivisible unit of work. Atomicity is defined from the consumer's perpective.
-
consistency: after the execution of transaction, the system should be in a correct state.
-
isolation: a transaction's behavior is not affected by other transactions that execute concurrently.
-
durability (persistence): A transaction's affects are permanent after it commits.
|