Indexes Explained Without the Jargon
An index is a sorted lookup the database keeps alongside your table. Understanding that one sentence explains almost every indexin…
Writing
Guides, updates and the occasional opinion.
An index is a sorted lookup the database keeps alongside your table. Understanding that one sentence explains almost every indexin…
All three are excellent. The right answer depends on concurrency, data shape and who maintains it.
Copying a database file while it is being written produces a backup that restores into corruption. Here is how to take a consisten…
The slow query log tells you exactly which statements are costing you. Most people never turn it on.
OFFSET-based pagination degrades exactly where it matters: deep in a large result set.
Normalise until it hurts, denormalise until it works — but know which pain you are trading for.