Loadingβ¦
Cut server response time so the browser starts rendering sooner. Aim for a TTFB under 800ms.
TTFB is how long the server takes to send the first byte of HTML. A slow TTFB delays everything after it, including LCP. Aim for under 800ms. Common causes: no caching, slow database queries, no CDN, and distant hosting.
# Every request hits PHP/DB and rebuilds the page
Cache-Control: no-store# Cache anonymous HTML at the edge
Cache-Control: public, s-maxage=300, stale-while-revalidate=86400Enable a full-page cache (WP Rocket, LiteSpeed, or Cloudflare APO) and object caching with Redis. Avoid heavy page builders on high-traffic pages.
Use static generation or ISR (revalidate) for pages that don't need per-request data, and cache fetch() calls.
Run a free audit and get a prioritized fix list with auto-generated code.
Run a free audit