ACID in Database Transactions
ACID (Atomicity, Consistency, Isolation, Durability) in IT is a properties of a business (or database) transactions, that guarantees the reliability and data integrity of the transaction.
Related concepts: Building a Lithuanian Law Assistant with LLM and RAG (part 2) , Normalizing Diacritics in Lithuanian , Building a Lithuanian Law Assistant with LLM and RAG (part 1) , Defining Microservice Scope - Integrators and Disintegrators .
ACID (Atomicity, Consistency, Isolation, Durability) in IT is a properties of a business (or database) transactions, that guarantees the reliability and data integrity of the transaction.
Atomicity - transaction as one unit. If one operation of transaction fails, the transaction is failed
Isolation - concurrent transactions are shielded form the "effects" of other transactions
Consistency - from one consistent database state to another to another consistent database state
Durability - guarantees that once a transaction is committed, changes will survive any system failures