The Bet Most WordPress Owners Are Losing
Here is the typical WordPress performance strategy in 2026: install Yoast or Rank Math, set up a caching plugin, maybe run an image compressor, and call it a day. The plugin dashboard is green. The SEO score is ticking up. The site still loads in 3.8 seconds.
The reason is almost always the same: the server stack hasn't been touched in years. PHP 7.4 — end-of-life since December 2022 — is still the most common PHP version running on live WordPress sites. MariaDB or MySQL versions from 2019 are quietly bottlenecking every single database query.
MariaDB 11.8 and PHP 8.5 both landed recently with performance numbers that make every caching plugin look incremental by comparison. This post runs the actual speed test — server environment upgrades versus the plugins everyone is installing — and the result is not close.
The numbers up front
MariaDB 11.8: 2.5x OLTP throughput with zero configuration changes. PHP 8.5 on WooCommerce: 33% more requests per second vs PHP 8.4. PHP 7.4 → PHP 8.5: a difference so large it makes most plugin optimisations look like rounding errors.
What MariaDB 11.8 Actually Changed
MariaDB 11.8 is the latest Long-Term Support release, maintained until June 2028. The headline number — 2.5x throughput increase for OLTP workloads — sounds like marketing until you understand what drove it.
The gain came from three interconnected improvements that compounded each other:
Redo log concurrency — the silent bottleneck, finally fixed
Every write to a MariaDB database goes through the redo log. In previous versions, this was a serial process — writes queued behind each other. MariaDB 11.8 redesigned redo log concurrency so multiple writes can be processed in parallel. On modern multi-core servers and NVMe storage, the throughput impact is dramatic. HammerDB benchmarks showed sustained throughput of millions of transactions per minute — workloads that would have bottlenecked at the redo log now fly through.
MDL scalability improvements — less locking, more parallelism
Metadata locking (MDL) was another serialisation point. When multiple queries hit the same tables simultaneously — exactly what happens under real WordPress traffic — MDL contention caused queuing. 11.8 significantly reduced this contention, allowing concurrent queries to proceed in parallel. For high-traffic WordPress or WooCommerce sites with dozens of simultaneous visitors, this directly reduces the time each user waits.
Buffer pool management — smarter memory use
The InnoDB buffer pool is where MariaDB caches data to avoid disk reads. 11.8 improved how this memory is managed, reducing contention when multiple threads try to access or modify cached data simultaneously. The result is better cache hit rates and fewer stalls under concurrent load — exactly the scenario a busy WordPress site produces.
Vector Search
First LTS with native vector distance functions (VEC_DISTANCE_COSINE, VEC_DISTANCE_EUCLIDEAN) — ready for AI-powered search features
PARSEC Authentication
New elliptic-curve authentication plugin replacing legacy password methods — stronger security with no performance penalty
utf8mb4 default
Full Unicode (including emoji) now the default character set — no more encoding bugs on multilingual WordPress sites
Observability
Expanded statistics columns and user metadata for better monitoring — easier to diagnose slow queries
What PHP 8.5 Actually Changed
PHP 8.5 released on November 20, 2025. The benchmarks that matter to WordPress and WooCommerce site owners are specific — not the abstract synthetic tests, but real request-per-second numbers under actual application loads.
PHP 8.5 reaches 71 req/s on WooCommerce vs ~53 req/s on PHP 8.4. The biggest jump in years for ecommerce workloads.
JIT compilation delivers a 61% boost on computation-intensive code — image processing, PDF generation, complex calculations.
OPcache is now a mandatory, built-in component of PHP — always present, always active. No more hosts shipping PHP without it.
The PHP Version Gap Is Bigger Than People Realise
Many sites are not jumping from 8.4 to 8.5 — they are still running PHP 7.4, which reached end-of-life in December 2022 and has received zero security patches since then. The performance gap between PHP 7.4 and PHP 8.5 is enormous across every workload. Here is how the PHP performance story evolved:
| PHP Version | Status | WooCommerce Speed | Security Patches |
|---|---|---|---|
| PHP 7.4 | ⛔ End of Life | Baseline (slowest) | ❌ None since Dec 2022 |
| PHP 8.0 | ⛔ End of Life | +10–15% vs 7.4 | ❌ None since Nov 2023 |
| PHP 8.1 | ⛔ End of Life | +20% vs 7.4 | ❌ None since Dec 2024 |
| PHP 8.2 | ✅ Security fixes | +25% vs 7.4 | ✅ Until Dec 2026 |
| PHP 8.3 | ✅ Active support | +28% vs 7.4 | ✅ Until Dec 2027 |
| PHP 8.4 | ✅ Active support | +30% vs 7.4 | ✅ Until Dec 2028 |
| PHP 8.5 | ✅ Latest | +33%+ vs 7.4 (WooCommerce) | ✅ Until Dec 2029 |
OPcache is now mandatory — what this means
Before PHP 8.5, some budget hosting providers shipped PHP without OPcache enabled, meaning every page load recompiled your PHP files from scratch. In PHP 8.5, OPcache is built into the binary — always present, always caching compiled bytecode. If your host was shipping PHP without it, upgrading to 8.5 alone could unlock significant gains.
The Speed Test: Upgrading Your Stack vs. Installing an SEO Plugin
Let's be precise about what SEO plugins actually do for performance: almost nothing. Yoast SEO generates sitemaps, writes meta tags, and adds schema markup. Rank Math does similar things plus redirects and keyword tracking. These are valuable for helping Google understand your content. They do not make your server faster. In fact, they add PHP execution overhead to every page load.
Compare that to what a server stack upgrade actually delivers:
| Action | Cost | Time to complete | Speed impact |
|---|---|---|---|
| Yoast SEO Premium | $99/yr | 30 min setup | −5–15ms (overhead added) |
| Rank Math Pro | $84/yr | 30 min setup | −3–10ms (overhead added) |
| WP Rocket (caching) | $59/yr | 1 hr setup | +200–500ms saved (page caching) |
| Upgrade PHP 7.4 → 8.5 | Free | 5 min in cPanel | +30–33% faster page generation |
| Upgrade to MariaDB 11.8 | Free (ask host) | 0 min (host-side) | +2.5x query throughput |
| Enable OPcache (if missing) | Free | 2 min in cPanel | +40–60% PHP execution speed |
The honest summary: SEO plugins help Google understand what your site is about. Server upgrades make your site fast. Google ranks fast sites. You need the understanding andthe speed — but most sites have the plugins and not the stack, which means they're leaving the biggest gains completely untouched.
The Real SEO Connection: Why Server Speed Is an SEO Decision
Google ranks on Core Web Vitals. Three of the four metrics that comprise Core Web Vitals are directly affected by your server response speed — and your SEO plugin has no influence over any of them.
TTFB — Time to First Byte
Server-sideDirectly driven by database query speed and PHP execution time. MariaDB 11.8's 2.5x query throughput and PHP 8.5's faster execution both reduce TTFB — the metric that tells Google how fast your server responds.
LCP — Largest Contentful Paint
Server-sideLCP is when the main content loads. For most WordPress sites, that content is generated by PHP querying MariaDB. Faster query execution = earlier first meaningful render = better LCP score.
INP — Interaction to Next Paint
Server-sideFor WooCommerce, cart updates, checkout flows, and product filtering all trigger server round-trips. PHP 8.5's 33% throughput gain on WooCommerce directly speeds up every one of those interactions.
CLS — Cumulative Layout Shift
Frontend-sideCLS is the one metric most affected by frontend — fonts, images, and late-loading elements causing visual instability. This is where a CDN and frontend optimisation matter more than the server stack.
The compounding effect
MariaDB 11.8 speeds up your queries. PHP 8.5 executes your application code faster. Together, they reduce the time between a visitor's request and your server's first response — TTFB. A lower TTFB means earlier LCP. Better LCP means better Core Web Vitals. Better Core Web Vitals means better rankings. No plugin achieves this because no plugin can reach into the server execution layer.
How to Check What You're Running Right Now
Before anything else, find out what version of PHP and MariaDB your site is actually using. Most hosting providers make this straightforward:
Check your PHP version in cPanel
- 1Log in to your cPanel dashboard
- 2Look for "Select PHP Version" or "PHP Selector" under the Software section
- 3Your current version is displayed — compare it to 8.5
- 4On MevoHost, you can switch PHP version from this panel instantly with no downtime
Check MariaDB version via phpMyAdmin
- 1Open phpMyAdmin from cPanel
- 2The database version is shown on the home page (e.g., "MariaDB 10.6.x")
- 3If you're below 11.8, contact your host — ask whether they support MariaDB 11.8
- 4On MevoHost managed VPS plans, we handle the MariaDB upgrade for you
Verify OPcache is active
- 1Create a file named info.php in your web root containing: <?php phpinfo(); ?>
- 2Visit yourdomain.com/info.php and search the page for "Opcache"
- 3Under "Opcache", the status should read "enabled"
- 4Delete info.php immediately after checking — do not leave it live
MevoHost runs PHP 8.3 by default — 8.4 and 8.5 available on request
All MevoHost shared and VPS plans ship with PHP 8.3 as the default, with 8.4 and 8.5 available via the PHP selector in cPanel. MariaDB upgrades on VPS plans are handled by our team with zero downtime. See our plans →
The Verdict
SEO plugins are not the problem. Yoast, Rank Math, and The SEO Framework are legitimate tools that do exactly what they say — help search engines understand your content, manage metadata, and generate structured markup. Use them.
But if your server is running PHP 7.4 and a 2019-era database, no amount of green checklists in your SEO plugin dashboard will compensate for the performance gap you are handing to competitors who updated their stack.
MariaDB 11.8 and PHP 8.5 represent the largest combined performance upgrade available to most WordPress sites right now — and both cost nothing to implement. That is a rarer situation than it sounds.
The action list
Check your PHP version today — if it's below 8.3, update it now
Ask your host whether they support MariaDB 11.8 on your plan
Verify OPcache is enabled — if it's off, turning it on is the fastest free win available
Once the stack is updated, then worry about caching plugins and CDN
Keep the SEO plugins — but understand they help Google read your site, not load it faster
PHP 8.5 and MariaDB 11.8 — ready when you are
MevoHost plans support PHP 8.5 via cPanel selector. VPS plans include managed MariaDB upgrades to 11.8 with zero-downtime migration. Get the stack that matches the speed you're optimising for.
David Lee
Performance Engineer at MevoHost
David specialises in server-side performance — benchmarking PHP versions, database configurations, and storage stacks to find the real-world gains that make the most difference for production WordPress and WooCommerce deployments.