• 0 Posts
  • 5 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle




  • ramjambamalam@lemmy.catoProgrammer Humor@programming.devSee MongoDB
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    1 month ago

    Atomicity: either all parts of the transaction complete, or all parts of the transaction don’t complete; there’s no “partly complete” state

    Consistency: the state of the database after a transaction is stable; all “downstream” effects (e.g. triggers) of the query are complete before the transaction is confirmed.

    Isolation: concurrent transactions behave the same as sequential transactions

    Durability: a power failure or crash won’t lose any transactions

    Traditionally, ACID is where relational databases shine.