Setting the file. One moment.
Subchapter 7.33
references/support-topics/function-duration-io-and-after.mdMarkdown1 KBView on GitHub
When wall-clock latency is much higher than CPU time, check critical-path awaits before blaming rendering or compute.
Compare cpu.p95, ttfb.p95, and latency.p95. In source, separate dependent awaits from independent awaits, and identify analytics, logging, or notification work that can run after the response.
Do not wrap dependent operations in Promise.all. Do not replace Promise.allSettled when partial failure handling is intentional.
Name the awaits that can move, the work that can run post-response, and the observed CPU-vs-wall-clock gap.