Edge Config
Medium — good to knowCloud & Infra
ELI5 — The Vibe Check
Edge Config is like a tiny config file that lives everywhere in Vercel's network simultaneously. Reading a feature flag takes under a millisecond because the data is already on the server near the user. Perfect for A/B flags without database roundtrips.
Real Talk
undefined
When You'll Hear This
undefined
Related Terms
Edge Computing
Your server is in Virginia. Your user is in Tokyo. Every request travels 10,000 km and back.
intermediateCloud & Infra
Feature Flag
A Feature Flag is an on/off switch for a feature in your app, controlled without redeploying. You ship the code but keep the feature hidden behind a flag.
beginnerCI/CD & DevOps
Vercel Edge Runtime
Edge Runtime runs your JavaScript at the edge (near users) in a tiny V8 sandbox. Cold starts in milliseconds, not seconds. The catch: you can't use Node.
intermediateCloud & Infra
Vercel KV
Vercel KV is managed Redis in your Vercel project. It's Upstash under the hood.
beginnerCloud & Infra