Topic · 68 articles
PostgreSQL
Schema, indexes, and transactions that hold under load.
PostgreSQL is the database I reach for by default, and most performance problems I see start in the schema. This hub covers data modeling, the indexes that actually get used, transaction isolation and its surprises, reading EXPLAIN output, and running migrations without downtime.
It is built around the PostgreSQL Masterclass series and links to the Databases, Redis, and NestJS hubs.
Frequently asked questions
Do these PostgreSQL articles cover query performance?
Yes — indexing strategy, reading EXPLAIN / EXPLAIN ANALYZE, spotting sequential scans and N+1 patterns, and the schema decisions that make queries fast or slow before you ever write them.