The database is going serverless and moving to the edge. This is the map: what these terms actually mean, when they win, and how the options compare.
The database used to be the one thing you provisioned, sized, and babysat. In 2026 two shifts have changed that: serverless (the database scales to zero, bills per use, and needs no capacity planning) and edge (the data runs close to users, often as SQLite replicas, for single-digit-millisecond reads). They solve real problems, and they come with real trade-offs. This guide is the map: what each term actually means, when it wins, and how the leading options compare, so you can choose without guessing.
The short version: serverless SQL (Postgres/MySQL) is now the sane default for most apps that want elasticity and no ops; edge SQLite is the answer when read latency near the user is the priority. Many teams use both.
SQLite left the phone and went to production. Replicated read-only copies at the edge give reads that a centralized Postgres can't match on latency, which is why Turso (libSQL) and Cloudflare D1 are having a moment.
Serverless brings cold starts (the first query after idle is slow) and connection-model quirks (HTTP/driver-based access, pooling). Edge SQLite brings write centralization (writes usually go to one primary, reads are the distributed part) and eventual-consistency windows on replicas. Neither is a free lunch; both are the right call for the right workload.
Default to a serverless Postgres (Neon-style) for a new app that wants elasticity without ops. Add edge SQLite (Turso/D1) when read latency near users is the actual bottleneck, and keep writes and strong-consistency paths on a primary. Match the database to the workload, not the hype, and remember that "serverless" and "edge" are properties you can mix. Each linked guide goes deep on one choice; start from whether your pain is scaling/ops (go serverless) or read latency (go edge).
Get the latest tutorials, guides, and insights on AI, DevOps, Cloud, and Infrastructure delivered directly to your inbox.
Explore more articles in this category
A hands-on walkthrough of Turso and libSQL, from CLI setup to embedded replicas that put SQLite reads next to your users.
A practical look at when SQLite is a genuinely good production database, where it breaks, and the tooling that makes it viable.
A practitioner's guide to choosing between serverless and provisioned databases based on cost, latency, connections, and load shape.
Evergreen posts worth revisiting.