← Study Guide·🎤 Part VII: Interview Preparation
22

Glossary

22. Glossary

TermDefinition
DX PlatformDeveloper Experience Platform — Vercel's self-description; infrastructure + tooling optimised for developer productivity
Edge RuntimeV8 isolate-based runtime for ultra-fast, globally distributed code execution at CDN PoPs
Fluid ComputeVercel's compute model that allows function instances to serve multiple requests concurrently, with Active CPU pricing
Active CPU pricingBilling model that charges only for actual CPU execution time, not I/O wait time
ISRIncremental Static Regeneration — static pages that regenerate in the background after a time interval or webhook trigger
RSCReact Server Components — server-rendered components that ship zero JavaScript to the client
PoPPoint of Presence — a CDN server location close to end users
Stale-while-revalidateCache strategy that serves stale content immediately while refreshing in the background
Cache stampedeWhen many concurrent requests all trigger cache regeneration simultaneously — Vercel prevents with request collapsing
Skew protectionEnterprise feature ensuring users always receive responses from the same deployment version that served their initial HTML
Edge ConfigGlobally replicated key-value store for ultra-low latency reads at the edge
v0Vercel's AI-powered frontend app builder that generates Next.js code from natural language
AI SDKVercel's open-source SDK for building AI-powered applications with unified provider interface
TurbopackVercel's Rust-based bundler, successor to webpack, built into Next.js
TTFBTime to First Byte — the time from request to first byte of the response
LCPLargest Contentful Paint — Core Web Vital measuring when the largest visible element renders
CLSCumulative Layout Shift — Core Web Vital measuring visual stability
INPInteraction to Next Paint — Core Web Vital measuring responsiveness to user input
Draft ModeNext.js feature that bypasses ISR cache to preview unpublished CMS content
Request collapsingVercel CDN feature that coalesces multiple concurrent requests for the same uncached resource into one origin call
Composable architectureArchitectural pattern assembling best-of-breed services (CMS, commerce, auth, search) connected through APIs
Headless CMSContent management system that provides content via API rather than rendering its own frontend
MACHArchitecture principle: Microservices, API-first, Cloud-native, Headless — the framework many Vercel enterprise customers use
use-workflowVercel's open-source library for converting functions into durable, retry-able workflows
Bytecode cachingV8 feature that caches compiled bytecode across Fluid Compute invocations, eliminating parse/compile overhead

Study tip: After reading each section, go to vercel.com/docs and find the documentation for that concept. Then deploy something that uses it. You will be expected to demo and discuss this in a real customer context.

Key resources:

  • Vercel Docs: vercel.com/docs
  • Next.js Docs: nextjs.org/docs
  • Vercel Blog (Engineering): vercel.com/blog/category/engineering
  • Vercel Ship AI 2025 talks: vercel.com/ship-ai
  • AI SDK Docs: sdk.vercel.ai