Skip to content

Durability

Medium — good to knowDatabase

ELI5 — The Vibe Check

Durability means once the database says 'committed', your data is saved forever — even if the server crashes right after. The database writes to disk before confirming success. It is the 'D' in ACID.

Real Talk

Durability guarantees that once a transaction has been committed, it will remain committed even in the event of system failure (power loss, crashes). This is achieved through write-ahead logging (WAL) where changes are written to a persistent log before being applied to data files.

When You'll Hear This

"Durability means committed data survives a server crash." / "Durability relies on write-ahead logging."

Made with passive-aggressive love by manoga.digital. Powered by Claude.