PageSpeed Matters
    PageSpeed Matters
    Loading Performance · Glossary

    Server Response Time · Definition & Explanation 2026

    Server Response Time measures how long your web server takes to process an incoming HTTP request and send back the first byte of the response. It's the primary component of TTFB and the foundation upon which all other loading metrics are built.

    Lighthouse flags server response times over 600ms. For optimal performance, target under 200ms for cached/static content and under 500ms for dynamic content requiring database queries.

    Server Response Time differs from TTFB in that it only measures server processing — not DNS resolution, TCP connection, or TLS handshake. However, improving server response time is the most impactful way to improve TTFB.

    Updated 2026-02-28
    M
    By Matt Suffoletto

    TL;DR — Quick Summary

    Server Response Time is how long your web server takes to process a request and send back the first byte. It's the primary contributor to TTFB and affects every subsequent loading metric. Target: under 200ms for static, under 500ms for dynamic.

    What is Server Response Time?

    Server Response Time refers to the duration a web server takes to process an incoming HTTP request and send the first byte back. It encompasses:

    • Routing — Matching the URL to a handler (1–5ms).
    • Authentication/middleware — Session validation, permissions (5–50ms).
    • Database queries — Fetching content, user data (10–500ms+ — often the bottleneck).
    • Template rendering — Building HTML from templates and data (5–100ms).
    • Response serialization — Converting data to JSON/HTML (1–10ms).

    Lighthouse flags server response times over 600ms.

    Server Response Time Thresholds

    MetricGoodNeeds ImprovementPoor
    Server Response Time≤ 200ms200ms – 600ms> 600ms

    Google evaluates the 75th percentile (p75) of real-user field data over a rolling 28-day window.

    History & Evolution

    Server response time has been a performance concern since the early web.

    • 2000s — Response times of 1–3 seconds were common with shared hosting.
    • 2010s — Cloud hosting and CDNs reduced typical times to 200–800ms.
    • 2018 — Lighthouse adds 'Reduce initial server response time' audit (> 600ms threshold).
    • 2020s — Edge computing enables sub-100ms response times globally.
    • 2025–2026 — CDN edge computing (Cloudflare Workers, Vercel Edge) achieves sub-50ms for cached content.

    How Server Response Time is Measured

    Measured at multiple levels:

    From the client: TTFB minus DNS + connection time (Navigation Timing API). From the server: APM tools like New Relic, Datadog, Sentry. From Lighthouse: 'Reduce initial server response time' audit. From WebPageTest: Waterfall shows exact TTFB breakdown.

    Key rule: Field data (CrUX) determines Google rankings. Lab data (Lighthouse, WebPageTest) is for debugging and iteration.

    Common Causes of Poor Server Response Time Scores

    1. 1Unoptimized database queries — N+1 queries, missing indexes, full table scans.
    2. 2No page caching — Regenerating HTML on every request.
    3. 3Slow hosting — Shared hosting with limited CPU/memory.
    4. 4No CDN — All requests travel to origin regardless of user location.
    5. 5Heavy middleware — Excessive plugin/module processing.
    6. 6External API dependencies — Blocking calls to slow third-party services.

    Frequently Asked Questions

    Struggling with Server Response Time?

    Request a free speed audit and we'll identify exactly what's holding your scores back.