PlanetScale
ELI5 — The Vibe Check
PlanetScale is MySQL on steroids with Git-like database branching. Want to test a schema change? Create a branch, make the change, get a diff, request a review, then merge. It's powered by Vitess (the thing that scales YouTube's database), so it can handle any scale. Schema changes without downtime — that's the dream.
Real Talk
PlanetScale is a serverless MySQL-compatible database platform built on Vitess. It provides database branching for safe schema changes, non-blocking schema migrations, horizontal sharding, connection pooling, and automatic scaling. It eliminates the need for traditional migration tools by using a deploy request workflow for schema changes.
When You'll Hear This
"PlanetScale branches let us test schema changes without touching production." / "Deploy requests on PlanetScale are like PRs for your database schema."
Related Terms
Database
A database is like a super-organized filing cabinet for your app's data.
MySQL
MySQL is the OG popular kid of databases. Half the internet runs on it (WordPress, Facebook originally).
Serverless
Serverless doesn't mean there are no servers — it means YOU don't have to think about servers. Someone else manages them, scales them, and patches them.