Published onFebruary 18, 2025Database Indexes Under the HooddatabasesperformancebackendMost developers know indexes make queries faster. Fewer know why, or when adding one makes things worse.
Published onAugust 22, 2024Writing SQL You'll Thank Yourself FordatabasesbackendSQL is easy to write badly. A few habits make queries more readable, more correct, and much easier to optimize later.
Published onJanuary 9, 2024The N+1 Query ProblemdatabasesperformancebackendN+1 is one of the most common performance bugs in backend development. It's subtle, easy to introduce, and can turn a fast endpoint into a slow one as data grows.