Measure first, optimize second
Every performance guide starts with a measurement. A median TTFB over 800ms means the server is the bottleneck; LCP over 2.5s with a fast TTFB points to rendering or images.
Use our methodology: 12 global test locations, 3 runs each, report the median. The same numbers we use in every benchmark on this site.
Cut TTFB
TTFB is dominated by server config, not caching plugins:
- Pick NVMe hosting — disk I/O is the #1 TTFB bottleneck on shared plans.
- Enable LiteSpeed / PHP OPcache — doubles PHP throughput on most hosts.
- Move PHP to PHP 8.3 — WordPress core runs ~3x faster than PHP 7.4.
- Use a regionally close server — for India traffic, a Mumbai or Singapore data center beats a US one by 100-150ms.
After these, expect TTFB 150-300ms on good shared NVMe plans.
Enable page caching
- LiteSpeed Cache (free, best on Hostinger/A2/DreamHost): enable Page Cache → Cache All, and let the plugin manage
.htaccess. - WP Rocket (premium): the
Optimize DeliveryandCombined Filessettings are safe defaults.
Add object caching with Redis
On Cloudways or a VPS, run Redis:
# on a VPS
docker run -d --name redis --restart unless-stopped -p 6379:6379 redis:7-alpine
Install the Redis Object Cache plugin, connect to 127.0.0.1:6379, and verify the status says Connected. Repeat-visit page build time typically drops 40-70%.
CDN: static assets at the edge
A CDN doesn't speed up your origin's TTFB, but it dramatically improves LCP and load time for static assets:
- Cloudflare free: set your nameservers to Cloudflare, enable Cache Static Assets and Browser Cache TTL.
- Managed edge: Kinsta and Cloudways route assets through their own edge networks with zero config.
Images and fonts
- Convert to WebP (or AVIF for browsers that support it) — typically 30-60% smaller than JPEG.
- Add
loading="lazy"andfetchpriority="high"on the hero image only. - Self-host fonts: preconnect to
fonts.gstatic.comif you must use Google Fonts, or self-host withfont-display: swap.
Re-test
Re-run the exact same tests. A good result: LCP < 2.0s, CLS < 0.1, and TTFB < 300ms. If TTFB stays high after all this, the bottleneck is the host — time to compare Cloudways vs SiteGround or check our WordPress hosting rankings.