flâneur — a map of the web's best reading

What Async Promised and What it Delivered — Causality

causality.blog · 2,694 words · saved by 1 readers

The async/await saga is a story where each chapter solves the previous chapter's worst problem while introducing new structural costs. The sequential syntax that made async code readable also obscures the thing that matters: which operations actually depend on each other.

April 2026 What Async Promised and What it Delivered Each wave fixed the last wave's worst problem and introduced a new one. OS threads carry overhead: an operating system thread reserves virtual address space for its stack and takes on the order of tens of microseconds to create on modern Linux. (edit Apr 27: The original “roughly a millisecond”, and “megabyte of stack space” conflated virtual reservation with physical memory commitment. Thanks to ibraheemdev, jemfinch, eklitzke on HN) Context switches happen in kernel space and burn CPU cycles, and O(n) readiness polling (select, poll) add u

Explore this link on the map →

saved by

related reading