How to use this glossary
Vercel's dashboard, docs, and error messages assume you already know the vocabulary. This page defines the 25 terms that come up most often, grouped by area. If you're onboarding a new engineer to a Vercel-hosted project, this is the fastest way to close the gap between 'has shipped Next.js before' and 'can navigate a Vercel incident at 2am.' Each term is defined in one or two sentences with the practical implication attached, not the marketing copy.
Runtime and functions
- Edge Function — code that runs on Vercel's edge network in a V8 isolate; Web APIs only, no Node.
- Serverless Function — traditional AWS Lambda-style function; full Node runtime, longer cold start.
- Edge Middleware — code that runs before a request reaches a route; used for auth, rewrites, A/B splits.
- Fluid Compute — Vercel's newer runtime model that batches multiple requests into a single function invocation for better utilization.
- Cold start — the first-request latency when a function's runtime isn't already warm.
- Warm invocation — a follow-up request served by an already-initialized function instance.
Rendering and caching
- SSG — Static Site Generation, HTML built at build time.
- SSR — Server-Side Rendering, HTML built on every request.
- ISR — Incremental Static Regeneration, rebuild a static page in the background after N seconds.
- PPR — Partial Prerendering, mix a static shell + streaming dynamic content in a single response.
- Data Cache — Vercel's request-level cache layer for fetch() calls; keyed by URL + headers + tags.
- Cache tag — a string used to invalidate a group of cached responses in one call via revalidateTag().
- revalidatePath — Next.js API to invalidate a specific route's cached output on demand.
Deploys and environments
- Deployment — an immutable build + hosting artifact; every push creates a new one.
- DPL — a Deployment ID (dpl_xxxx), unique per build.
- Preview — a per-branch or per-PR deploy at a unique URL.
- Production — the deploy assigned to the primary domain.
- Promote — assign an existing preview deploy to production without re-building.
- Rollback — re-promote an older deploy to production instantly.
- Instant Rollback — Vercel's UI shortcut for rolling back to any previous deployment in seconds.
Networking and delivery
- Edge Network — Vercel's CDN, ~18 regions with global routing.
- Fast Data Transfer — Vercel's term for bandwidth served from the edge (billed).
- next/image — Vercel's image loader; source images are transformed on demand at the edge.
- Log Drain — a pipe from Vercel logs into a third-party store (Datadog, Axiom, Logtail).
- Firewall — Vercel's rule engine for blocking IPs, user agents, and request patterns.
Team and billing
- Team — a billing entity that owns Projects and users.
- Hobby — the free personal tier; non-commercial use.
- Pro — the paid team tier, $20/user/month.
- Enterprise — custom contract tier with SSO, SLA, and committed usage.
- Spend cap — an optional monthly maximum after which projects pause instead of billing.
Terms you'll see in error messages
Half of the vocabulary you need lives not in the docs but in error text. 'INTERNAL_FUNCTION_INVOCATION_FAILED' means your handler threw and Vercel's runtime caught it before a response was sent. 'MIDDLEWARE_INVOCATION_TIMEOUT' means Edge Middleware exceeded its budget. 'FUNCTION_PAYLOAD_TOO_LARGE' means the request or response exceeded the 4.5MB limit on Serverless Functions. Each of these maps to a specific Vercel feature; when you see the string, treat it as a search term and the docs will explain the exact remedy.