Backlinks Graph
Backlinks
Table of Contents

Databases

  2026-03-04

  Edited: 2026-03-04

Fundamentals

https://tontinton.com/posts/database-fundementals/ https://www.thenile.dev/blog/transaction-isolation-postgres

The simplest database can be just writing to a file and then reading the file to get the results back. Databases, however, are more advanced, in order to provide

The safety aspects of databases are refer to being ACID.

ACID

ACID is an acronymn and refers to the database's property of maintaining safe and consistent behavior during transactions. Transactions are a series of statements for interacting with databases, whether it be a series of writes, reads, or both.

Storage Engine

Databases have to fast, and the fastest way is to rely on caches and memory, of which the L1 cache is the fastest.