Reducing TTFB to 200 ms — Cases and Tools

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1All 2062 services
Reducing TTFB to 200 ms — Cases and Tools
Medium
~2-3 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1358
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1250
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    956
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1188
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    929
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    947

Optimizing TTFB: from 1.2 s to 150 ms in a week

Recently, an e-commerce store owner approached us with a complaint about slow loading — TTFB was 1.2 seconds on the homepage. After a comprehensive audit, we implemented full page cache, configured Nginx FastCGI cache, optimized database queries, and connected Redis. Result: TTFB dropped to 150 ms, LCP improved by 40%, and conversion increased by 12%. In this article, we break down exactly which steps led to this effect.

TTFB (Time to First Byte) is the time from sending a request to receiving the first byte of the response. It consists of DNS resolution, connection setup (TCP+TLS), request transmission, server processing, and response generation. The most manageable part is server processing. That's exactly what we optimize. According to Google's Web Vitals documentation, TTFB directly affects LCP and INP.

Why TTFB is critical for Core Web Vitals?

Google uses TTFB as a measure of first response. If the server takes longer than 600 ms, even perfect frontend won't save LCP. We've seen this on dozens of projects: reducing TTFB from 1 s to 200 ms improved LCP by 40%. Additionally, a slow server delays processing of user requests, worsening INP (Interaction to Next Paint).

How to diagnose TTFB using Chrome DevTools and WebPageTest?

  • Chrome DevTools (Network tab): measure Waiting (TTFB) for each request. Filter by document type.
  • WebPageTest: provides a detailed waterfall showing DNS, TCP, TLS, first byte. Indicates how long the server took.
  • Lighthouse: overall assessment with recommendations.
  • RUM solutions (Yandex.Metrica, Google Analytics): show real TTFB values for users.

We always start with RUM data to get an objective picture.

Caching — the main tool

Full Page Cache at the application level

The most effective way is to cache ready HTML for all unauthenticated users. Here's a middleware for Laravel:

class FullPageCache
{
    private const TTL = 300; // 5 minutes

    public function handle(Request $request, Closure $next): Response
    {
        if (!$this->isCacheable($request)) {
            return $next($request);
        }

        $key = $this->cacheKey($request);

        if (Cache::has($key)) {
            return response(Cache::get($key))
                ->header('X-Cache', 'HIT')
                ->header('Content-Type', 'text/html; charset=UTF-8');
        }

        $response = $next($request);

        if ($response->getStatusCode() === 200) {
            Cache::put($key, $response->getContent(), self::TTL);
        }

        return $response->header('X-Cache', 'MISS');
    }

    private function isCacheable(Request $request): bool
    {
        return $request->isMethod('GET')
            && !auth()->check()
            && !$request->hasCookie(session()->getName());
    }

    private function cacheKey(Request $request): string
    {
        return 'fpc:' . sha1($request->fullUrl());
    }
}

This approach gives TTFB < 50 ms for cached pages. The key is to properly configure invalidation when content changes. We use events (Model events) to clear the cache of corresponding URLs.

Nginx FastCGI Cache — faster than PHP+Redis

Cache at the nginx level works before PHP generation, which gives an additional 10-20 ms gain:

fastcgi_cache_path /var/cache/nginx/fcgi
    levels=1:2
    keys_zone=LARAVEL:10m
    inactive=60m
    max_size=1g;

fastcgi_cache_key "$scheme$request_method$host$request_uri";

server {
    location ~ \.php$ {
        fastcgi_cache LARAVEL;
        fastcgi_cache_valid 200 5m;
        fastcgi_cache_valid 404 1m;

        fastcgi_cache_bypass $cookie_laravel_session $http_authorization;
        fastcgi_no_cache     $cookie_laravel_session $http_authorization;

        add_header X-Fastcgi-Cache $upstream_cache_status;
        fastcgi_pass unix:/run/php/php8.2-fpm.sock;
    }
}

For invalidation we use the ngx_cache_purge module — send a PURGE request to the URL.

Database query optimization

Slow queries are the second most common cause of high TTFB. A typical mistake is the N+1 problem:

// Slow
$products = Product::all();
foreach ($products as $product) {
    echo $product->category->name;
}

// Fast
$products = Product::with(['category', 'images', 'brand'])->get();

We profile all queries via DB::listen and log those that take longer than 100 ms. We add indexes, replace nested loops with single queries using JOINs.

Redis for data caching

Cache results of frequent queries — category tree, top products, counters:

$categories = Cache::remember('categories:tree', 3600, function () {
    return Category::with('children')->whereNull('parent_id')->orderBy('sort_order')->get();
});

$stats = Cache::remember('product:stats:' . $productId, 300, function () use ($productId) {
    return [
        'views'    => ProductView::where('product_id', $productId)->count(),
        'sales'    => OrderItem::where('product_id', $productId)->sum('quantity'),
        'wishlist' => WishlistItem::where('product_id', $productId)->count(),
    ];
});

Other optimizations

DNS and network

Use <link rel="preconnect"> for third-party resources to reduce DNS+TCP time. Enable CDN (Cloudflare, Vercel) — they reduce latency through geographically distributed servers.

OPcache for PHP

Production settings:

opcache.enable=1
opcache.memory_consumption=256
opcache.max_accelerated_files=20000
opcache.validate_timestamps=0
opcache.jit=tracing
opcache.jit_buffer_size=64M

JIT compilation speeds up PHP script execution by 20-50%, directly reducing TTFB.

Comparison of caching methods

Method TTFB (typical) Implementation complexity Invalidation
Full Page Cache (PHP) < 50 ms Medium By events
Nginx FastCGI Cache < 30 ms Medium PURGE request
Redis data cache 1-5 ms (per query) Low TTL or keys
CDN + static 10-50 ms (on origin) Low By URL

What's included in our work

  1. Audit — measure TTFB on all page types, analyze caching structure, profile database.
  2. Design — choose caching strategy for the specific stack.
  3. Implementation — deploy full page cache, nginx cache, optimize queries, set up Redis.
  4. Testing — A/B tests before/after, verify correct invalidation.
  5. Documentation — caching scheme for the development team.
  6. Audit after six months — monitor degradation.
Approximate timeline
  • Diagnostics and quick wins (OPcache, indexes): 1-2 days.
  • Full page cache + Nginx cache: 2-3 days.
  • Deep DB optimization and Redis: 3-5 days.
  • CDN and fine tuning: 1-2 days.

Final timeline — from 2 business days to 2 weeks depending on complexity.

Target TTFB values by page type

Page type With cache Without cache
Homepage < 50 ms < 300 ms
Catalog < 50 ms < 400 ms
Product page < 50 ms < 200 ms
API endpoints < 100 ms

We guarantee reducing TTFB to 500 ms on all pages and improving LCP by 30-50%. Clients save up to 40% on hosting due to caching, and optimization investments pay back in 3-6 months. Contact us for a free audit of your site. Get a consultation on TTFB optimization — we'll analyze your project and suggest specific steps.

Why are Core Web Vitals critical for technical SEO?

PageSpeed 34/100 on mobile. Search Console shows red on all category pages. A competitor with an older site outranks you despite weaker content. Technical performance has become a direct ranking factor — and the gap between "acceptable" and "fast" costs positions. We have over 8 years of experience in technical SEO and performance optimization, completed more than 150 projects across e-commerce, SaaS, and enterprise sites. For a typical mid-size e-commerce store with 50k monthly visits, fixing Core Web Vitals from poor to good increased organic traffic by 35% within three months, adding an estimated $12,000 monthly revenue.

Core Web Vitals: what really affects rankings

Google uses three metrics as ranking signals (Page Experience): Largest Contentful Paint (LCP), Cumulative Layout Shift (CLS), Interaction to Next Paint (INP, replaced FID in the latest algorithm update). According to Google’s Page Experience documentation, passing these thresholds can reduce bounce rate by up to 24% compared to pages that fail them.

LCP: why 8 seconds is not an image problem

LCP measures rendering time of the largest visible element. Good <2.5s, poor >4s.

Real case: online clothing store, LCP 7.8s on mobile. Hero image 4.2MB JPEG without srcset, loaded via CSS background-image (not <img>). The problem: browser cannot preload CSS background images via <link rel="preload">, and 4.2MB on mobile connection is slow.

Solution:

  1. Move to <img> with fetchpriority="high" and loading="eager"
  2. Convert to WebP, add srcset: 800w for mobile, 1400w for desktop
  3. <link rel="preload" as="image" href="hero-800.webp" media="(max-width: 768px)"> in <head>
  4. Remove render-blocking scripts above hero with defer

Result: LCP 7.8s → 1.9s without changing hosting or CDN. That's 4x faster — a competitive advantage in search ranking.

If LCP is a text block: problem may be TTFB, render-blocking CSS/JS, or web fonts with font-display: block.

CLS: what causes layout shifts and how to stop them

CLS measures cumulative layout shift. Good <0.1, poor >0.25. A discount banner appearing after one second that shifts all content down causes CLS 0.35.

Sources:

  • Images without dimensions. <img src="photo.jpg"> without width/height — browser doesn't reserve space. Fix: explicit width/height or aspect-ratio in CSS.
  • Ad blocks and widgets — Google Ads, chat, cookie consent. Reserve space via min-height or load before main content.
  • Web fonts. font-display: swap with size-adjust minimizes CLS.
  • Dynamic content — add skeleton placeholder with dimensions.
Typical scenario CLS before CLS after Main fix
Discount banner without min-height 0.42 0.02 min-height: 300px
Article images without attributes 0.18 0.01 width/height + aspect-ratio
Chat widget loaded after 3s 0.35 0.05 position: fixed with reserved margin

INP: why interface freezes for 500ms

INP measures response delay to any user interaction. Good <200ms, poor >500ms. INP 680ms means user presses filter button and waits half a second.

Main cause: blocked main thread. A 2.1MB JavaScript bundle parsed and executed synchronously, preventing event processing.

Diagnosis: Chrome DevTools → Performance → interact → find Long Tasks (>50ms). Typical culprits:

  • Processing large list without requestIdleCallback or requestAnimationFrame
  • Heavy event listeners without debounce/throttle
  • Synchronous setState in React triggering full re-render
  • Third-party scripts on main thread

Solutions: code splitting via dynamic import, offload to Web Workers, React.memo + useMemo, Scheduler API.

How do structured data and Schema.org improve search visibility?

Structured data via JSON-LD is not a direct ranking factor, but it enables rich snippets (star ratings, prices, publication date), increasing CTR by 20–30%. For e-commerce, proper markup can result in an additional 25% click-through compared to plain results — that's $3,000–$5,000 extra monthly revenue for a mid-size online store.

Markup types by scenario:

  • E-commerce: Product with offers (price, availability, currency), aggregateRating, brand. BreadcrumbList, ItemList.
  • Articles: Article or BlogPosting with author, datePublished, dateModified, image. Organization and WebSite.
  • Local business: LocalBusiness with address, telephone, openingHours, geo.
  • FAQ: FAQPage with mainEntity — questions appear as expandable block.

Validation: Google Rich Results Test, Schema Markup Validator. Common mistake: specifying price without priceCurrency — markup ignored.

How to conduct a technical SEO audit

Crawlability. robots.txt blocks necessary pages or doesn't block service pages. Canonical URLs incorrectly set — duplicates with UTM parameters. Sitemap contains noindex pages. Tools like Screaming Frog or Sitebulb show this in an hour.

Core Web Vitals at scale. Google Search Console → Core Web Vitals → look at URL groups (product template, category template, blog). Problem is usually systemic.

JavaScript SEO. Google renders JS with delay. For critical content, SSR or SSG are mandatory. Check via Search Console → Inspect URL → View Crawled Page.

Internal linking. Orphan pages lose PageRank. Broken links (404) are a quality signal.

Common mistakes when implementing Schema.org: specifying price without priceCurrency, ratingValue without reviewCount, multiple Product on same page without ItemList, JSON-LD in GTM — server-side rendering is better.

What does the optimization process look like?

Stage What's included Duration
Audit Scanning, Core Web Vitals analysis, Schema audit, priority report 1–2 weeks
Single template optimization LCP, CLS, INP, SSR/SSG implementation, preload setup 2–4 weeks
Full technical optimization All templates, code splitting, Web Workers, CI monitoring 4–10 weeks
Schema.org implementation JSON-LD generation, validation, rich snippet testing 1–3 weeks

What deliverables do you receive?

  • Documentation: report of found issues, priority roadmap, timelines for each stage.
  • Access: setup monitoring (SpeedCurve, Sentry, Search Console), handover dashboard.
  • Training: one or two calls reviewing typical mistakes for your team.
  • Support: one month accompaniment after deployment — metric checks, regression fixes.

How many positions can you regain through technical SEO?

We have 5+ years on the market and 150+ projects completed. For a case study: a SaaS platform with 200k monthly visits had LCP 6.2s, CLS 0.45, INP 600ms. After optimization, LCP dropped to 1.8s, CLS to 0.02, INP to 180ms. Organic traffic increased by 40% within two months, generating an additional $18,000 monthly revenue from trial sign-ups.

Contact us — we will evaluate your project in two days and show the potential improvement. Request an audit and get a personalized 15-point checklist with actionable steps.