DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Next.js Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Next.js
Why does doing slow work (e.g. an external API call) inside a Proxy function hurt performance broadly?
A
It only affects the Proxy function's own execution, nothing else
B
Proxy runs ahead of every matched request, so slow work there adds latency to that ENTIRE class of requests, every time
C
Slow Proxy code is automatically run in the background, so it has no effect
D
This only matters in development mode
Check Answer