Back to Blog
Performance 12 min read

Web Hosting Speed: The Complete Guide to TTFB, Core Web Vitals & Fast Hosting

Your hosting provider is the single biggest variable in your site's speed. This guide breaks down exactly what to measure, what to fix, and which hosts actually deliver — backed by weekly benchmark data.

DL
David Lee
Head of Performance at MevoHost
May 1, 2026 12 min read

Why Speed Matters in 2026

Page speed is no longer just a nice-to-have — it's a direct revenue driver and a confirmed Google ranking signal. Every second of additional load time compounds into real losses: fewer visitors, lower engagement, and worse conversion rates. The data has been consistent for over a decade, and in 2026 user tolerance for slow pages has only shortened.

Google's Core Web Vitals have been a ranking factor since 2021. Sites that fail the thresholds — particularly on mobile — are at a measurable disadvantage in organic search. This isn't theoretical: analysis of large-scale search result sets shows that pages passing Core Web Vitals rank higher across competitive queries. Speed is now part of your SEO budget whether you plan for it or not.

−7%
Conversions per 1s delay

A single extra second of load time costs 7% of conversions — compounding across every visitor.

−11%
Fewer page views

Slow pages see 11% fewer page views as visitors abandon before exploring further.

−16%
Customer satisfaction

Customer satisfaction drops 16% for every second of added load time — damaging brand trust.

The impact is especially pronounced for e-commerce sites. A 100ms improvement in load time has been shown to increase conversion rates by up to 1% — and for high-volume stores that compounds into significant annual revenue. Speed optimization is one of the highest-ROI technical investments a website can make.

What Is TTFB?

TTFB — Time To First Byte — is the time between a browser sending an HTTP request and receiving the first byte of the server's response. It's the purest measure of raw server performance. Everything else (images loading, JavaScript executing, layout rendering) cannot start until TTFB completes. A slow TTFB is a ceiling on every other performance metric.

The target is under 200ms. Google's own guidance classifies anything above 800ms as "poor" for TTFB in the context of Largest Contentful Paint. The three biggest causes of high TTFB are underpowered server CPUs (especially on oversold shared hosting), lack of server-side object caching (causing repeated PHP/database execution), and shared hosting throttling that kicks in under load.

TTFB RangeRatingWhat it means
0 – 200msExcellentFast server, good caching. Minimal impact on LCP.
200 – 500msAcceptableManageable but worth investigating. Room to improve.
500ms+Needs WorkWill drag down Core Web Vitals. Address immediately.

MevoHost Benchmark

MevoHost averages 180ms TTFB globally — tested weekly via our automated benchmark runner from a neutral US-East server. Results are published every Monday.

Core Web Vitals

Google's Core Web Vitals are three specific, user-centric metrics that measure real-world experience. They replaced the older lab-only metrics (FCP, TTI, FID) and are now used directly in search ranking. Unlike PageSpeed score — which is a composite lab metric — Core Web Vitals are measured from actual Chrome user data (CrUX) and carry direct SEO consequences.

Each metric has a "Good", "Needs Improvement", and "Poor" threshold. To pass the Core Web Vitals assessment, your site must hit the "Good" threshold at the 75th percentile of real user sessions — meaning 75% of your visitors experience a "Good" score, not just the median visitor.

LCP
Largest Contentful Paint
≤ 2.5s
How fast the largest visible element (hero image or H1) finishes rendering.
CLS
Cumulative Layout Shift
≤ 0.1
How much page elements move around unexpectedly while the page loads.
INP
Interaction to Next Paint
≤ 200ms
How quickly the page responds to user clicks, taps, and keyboard input.

Your hosting directly affects LCP and INP. A slow TTFB delays LCP because the browser can't begin rendering until the first byte arrives. INP is impacted by server response times on dynamic requests (API calls, form submissions, search queries). Only CLS is relatively hosting-independent — it's mostly a front-end CSS/font loading issue.

Hosting Types & Speed

Not all hosting is created equal — and the differences are measured in seconds, not milliseconds. The type of hosting you choose sets a hard ceiling on your TTFB and ultimately your Core Web Vitals scores. Understanding the trade-offs between shared, VPS, cloud, and managed WordPress hosting is essential before you spend money on front-end optimization.

Shared hosting places hundreds of sites on one physical server. When any site spikes in traffic or runs heavy PHP, every site on that server suffers. VPS gives you dedicated CPU and RAM. Cloud hosting adds horizontal scaling. Managed WordPress is a category of its own — optimized specifically for WordPress workloads with server-level caching and PHP tuning included.

TypeAvg TTFBTraffic LimitBest For
Shared600 – 1,200msLowStarter sites, low-traffic blogs
VPS200 – 400msMediumGrowing businesses, dev environments
Cloud100 – 300msHighScaling sites, high-traffic apps
Managed WP150 – 250msMedium–HighWordPress sites needing reliability

TTFB ranges are averages

Actual TTFB varies significantly within each category based on provider, plan tier, server load, and caching configuration. The values above are representative of typical configurations without additional caching optimization. See our benchmark data below for provider-specific numbers.

Server Location Matters

Physical distance between your server and your visitor adds unavoidable latency — the speed of light is a real constraint on web performance. A rough rule of thumb: every 1,000km of distance adds approximately 10ms of round-trip time. For a visitor in London connecting to a server in Los Angeles (~8,700km), that's roughly 87ms of latency before a single byte has been processed.

For dynamic pages — where the server must process PHP, query a database, and build the HTML before responding — this latency is added on top of server processing time. If your TTFB target is 200ms and you're spending 90ms on network latency alone, your server has only 110ms left to do all its work. Choosing a server location that matches your target audience is one of the highest-leverage decisions you can make at the hosting selection stage.

MevoHost Data Center Locations

MevoHost operates from London (UK) and Dallas (US) data centers, covering European and North American audiences with minimal latency. UK-based businesses benefit from sub-30ms latency to major UK cities. Select your preferred region during signup — you can migrate between regions at no cost.

If your audience is geographically spread, a CDN (Content Delivery Network) can compensate by caching static assets at edge locations worldwide — but dynamic page generation still requires a round-trip to the origin server. For global audiences serving primarily static or cached content, a CDN alone can largely eliminate the server location penalty.

CDN & Caching

A Content Delivery Network caches copies of your site's static assets — images, CSS, JavaScript, fonts — at hundreds of edge locations worldwide. When a visitor loads your page, those assets are served from the nearest edge node rather than your origin server, reducing both latency and load on your hosting infrastructure. For sites with globally distributed audiences, a CDN can reduce asset load times by 50–80%.

Server-side caching works differently: instead of generating HTML from scratch on every request (querying the database, running PHP, building the page), a caching layer stores a pre-rendered version and serves it instantly. For WordPress sites, plugins like WP Super Cache, W3 Total Cache, or LiteSpeed Cache can reduce server processing time from 500ms+ to under 50ms per request. Object caching (Redis or Memcached) goes a step further by caching database query results in memory.

Recommended caching stack

Cloudflare (Free plan)

CDN, DDoS protection, and basic caching — covers static assets globally at no cost.

LiteSpeed Cache

Server-level WordPress caching. Best performance if your host runs LiteSpeed (as MevoHost does).

W3 Total Cache

Flexible caching plugin for Apache/Nginx servers. Supports Redis, Memcached, and CDN integration.

WP Super Cache

Simple, reliable WordPress caching by Automattic. Ideal for sites new to caching configuration.

Redis Object Cache

Stores database query results in memory. Drastically reduces PHP execution time on dynamic pages.

Included on all MevoHost plans

MevoHost includes Cloudflare CDN integration on all hosting plans — no extra setup, no DNS configuration required. Enable it from your control panel with one click and start serving assets from Cloudflare's 300+ global edge locations immediately.

Real Benchmark Data

Hosting company marketing pages are full of performance claims — but claims aren't data. The only way to know how a host actually performs is to run standardized tests against real hosted sites from a consistent, neutral location. That's exactly what our benchmark runner does.

We maintain a set of identical WordPress test sites on 11 major hosting providers. Each site has the same theme, the same plugins, the same content, and the same caching configuration. Every week, our benchmark runner fires automated Lighthouse audits and TTFB probes against each site and records the results — giving us an apples-to-apples comparison that removes marketing spin.

Benchmark methodology: Our runner tests 11 hosts every Monday at 03:00 UTC from a neutral US-East server (AWS us-east-1). Each test runs 3 Lighthouse audits and records median TTFB, PageSpeed score, SSL grade, and 30-day uptime. Results are published by 06:00 UTC each Monday.

See the live data

The full weekly-updated table — including TTFB, PageSpeed score, SSL grade, and uptime for all 11 tested hosts — is available on our Compare All Hosts page. Updated every Monday morning.

Compare All Hosts

We've published individual deep-dive comparisons between MevoHost and the 10 most popular hosting providers. Each comparison page includes the latest benchmark data, a feature-by-feature breakdown, pricing analysis, and a straightforward recommendation for which type of site each host is best suited to.

Rather than making a blanket claim that one host is always best, our comparisons focus on specific use cases — so you can find the right match for your site's traffic level, technical requirements, and budget. The TTFB notes below reflect our latest benchmark round.

Speed Checklist

Use this checklist as a baseline audit for any site you're launching or optimizing. Each item has a measurable impact on TTFB, Core Web Vitals, or overall PageSpeed score. The first five items are hosting-level decisions — get these right before touching a single line of front-end code.

A site that passes all 10 items will typically score 85+ on PageSpeed Insights mobile and achieve a "Good" rating across all three Core Web Vitals — assuming reasonable front-end code quality. This is the foundation; content and code optimization builds on top.

Choose NVMe SSD hosting — HDDs and SATA SSDs introduce significant I/O latency for database operations
Use server-side caching — LiteSpeed Cache, Redis, or W3 Total Cache to avoid rebuilding pages on every request
Enable Gzip or Brotli compression — reduces HTML/CSS/JS transfer size by 60–80%
Serve WebP images — 25–35% smaller than JPEG at equivalent visual quality
Use a CDN — serve static assets from edge locations near your visitors, not just your origin server
Set long cache headers — use max-age=31536000, immutable on versioned static assets
Lazy-load below-fold images — defer loading of images not visible in the initial viewport
Minimize and defer JavaScript — remove unused code, defer non-critical scripts to after page render
Choose a data center nearest your target audience — every 1,000km adds ~10ms of latency
Monitor TTFB weekly — set up automated uptime and TTFB monitoring to catch regressions early
Web Hosting Speed TTFB Core Web Vitals PageSpeed
Share:
DL

David Lee

Head of Performance at MevoHost

David leads performance engineering at MevoHost, where he oversees the weekly benchmark runner, infrastructure tuning, and Core Web Vitals research. He has 10+ years of experience optimizing hosting stacks for high-traffic WordPress and e-commerce sites.

Enjoyed this article?

Get the next one delivered straight to your inbox — no spam, unsubscribe any time.