← All topics
Postgres

Postgres

3 articles on postgres

scan
scans.svg
#postgres Intermediate

Five types of scans every backend dev should recognise

Seq scan, index scan, index-only scan, bitmap heap scan, TID scan. When the planner picks each, and what it means when you see the wrong one.

AD Admin ·Apr 21, 2026 ·11 min
psql
pg-tuning.svg
#postgres Advanced

Postgres tuning: the eight knobs that actually matter

shared_buffers, work_mem, effective_cache_size, and five more — what they really do, how to size them, and which defaults are still stuck in 2008.

AD Admin ·Apr 14, 2026 ·22 min
cov
covering.svg
#postgres Intermediate

Covering indexes: when you can skip the heap entirely

If your index has every column the query needs, the database never has to fetch the row. Here's how to recognise the opportunity — and the storage trade.

AD Admin ·Apr 07, 2026 ·8 min