Topic
Postgres
Learn Postgres as a connected topic across chapters, concepts, simulations, and interview reasoning.
10 Concepts11 Articles4h 34m
Overview
Learn Postgres as a connected topic across chapters, concepts, simulations, and interview reasoning.
How this topic helps
System Design
Databases
Distributed Systems
Sql
Learning Path in this Topic
Series that contain articles from Postgres. Select a path to filter the article list.
Articles
11 matched articles
Article 2System Design HLD Example: URL Shortener (TinyURL and Bitly)TLDR: A URL shortener is a read-heavy system (100:1 ratio) that maps long URLs to short, unique aliases. The core scaling challenge is generating unique IDs without database contentionβsolved using a 19 min
Article 6ACID Properties Explained: How SQL Databases Guarantee Atomicity, Consistency, Isolation, and DurabilityTLDR: ACID is four orthogonal guarantees that every SQL transaction must provide. Atomicity says all-or-nothing: PostgreSQL implements it via WAL rollback; MySQL InnoDB via undo logs. Consistency says38 minPage 1 of 2