A slow WordPress site costs more than a few impatient page loads. Visitors bounce, conversions drop, and Google’s Core Web Vitals — the real-world speed metrics baked directly into search rankings — quietly work against you. That’s the exact problem Perfmatters was built to solve.
Unlike caching plugins that focus on one job, Perfmatters takes a broader approach: it strips out the unnecessary code your site loads by default, gives you granular control over exactly which scripts run and where, cleans up a bloated database, and hands you a set of modern loading techniques most WordPress sites never take advantage of.
It’s been around since 2017, built by two brothers with a combined 26+ years of WordPress experience, and today runs on more than 175,000 websites.
This review breaks down what Perfmatters actually does feature by feature, what real performance gains look like based on both the developers’ own case studies and independent customer feedback, how it’s priced, and — just as importantly — where it falls short, based on a close read of its Trustpilot reviews rather than just the highlight reel.
What Is Perfmatters and Who Built It
Perfmatters is a premium WordPress plugin focused entirely on front-end performance and Core Web Vitals. It isn’t a caching plugin, an image compressor, or a security suite — its job is narrower and more surgical: control what loads on your site, when it loads, and whether it needs to load at all.
The plugin was created by Brian and Brett Jackson, who launched it on June 1, 2017 under their company, forgemedia LLC, and have kept it self-funded and independent ever since.
Brian previously served as CMO at the managed WordPress host Kinsta and has spent years working across the hosting and CDN side of the industry; he also writes about WordPress and marketing at woorkup.com and has been referenced by outlets like Smashing Magazine and Moz for his performance work.
Brett comes from a web development and agency background, having handled everything from site builds to server administration before co-founding the plugin with his brother.
That hands-on history shows up in how the plugin is run. There’s no outsourced support team — every ticket goes to Brian, Brett, or a small in-house team who actually built the product. It’s a detail that comes up constantly in customer reviews, and one worth keeping in mind as you read through the rest of this breakdown.
Today, Perfmatters is installed on more than 175,000 sites, and on Trustpilot it holds a 4.9 out of 5 rating across 115 reviews — a number worth digging into more critically later in this piece, because the distribution of those ratings tells its own story.
What Perfmatters Actually Does: A Feature-by-Feature Breakdown
Perfmatters’ dashboard is organized as a series of toggles and settings panels rather than a single configuration file, which is part of why non-developers can use it without touching functions.php or writing code. Here’s what’s actually happening under each of its main sections.
Disabling Unnecessary Scripts and Bloat
Most WordPress installs load a surprising amount of code that the average site never uses. Emoji support is the classic example: WordPress loads a dedicated script on every single page, on every site, whether or not that site ever uses an emoji. Perfmatters lets you switch that off with one click, along with a long list of similar defaults — embeds, dashicons (the icon font used in the WordPress admin, which sometimes leaks onto the front end), the jQuery Migrate script, XML-RPC, the REST API’s public-facing links, RSS feed links, the WordPress version number, self-pingbacks, and the password strength meter, among others.
A few of these toggles matter more than they look. WooCommerce’s cart fragments request is a well-known culprit behind slow-loading pages on ecommerce sites — it fires an AJAX call on every page load to keep the mini-cart in sync, even for visitors who have nothing in their cart. Perfmatters lets you disable it outright or delay it (more on that below).
Google Maps embeds are another common offender; a single unoptimized embed can pull in a large chunk of JavaScript, so Perfmatters lets you disable Maps selectively rather than sitewide.
None of these toggles require code, and each one removes an HTTP request and a bit of parsing time — small individually, but they add up quickly across a typical WordPress install running 20 or more plugins.
The Script Manager
This is the feature Perfmatters is best known for, and it goes considerably further than a list of switches. The Script Manager scans your site and groups every script by the plugin or theme responsible for it, then lets you decide exactly where each one is allowed to run — sitewide, on specific pages or post types, only on desktop or only on mobile, and only for logged-in or logged-out visitors.
The classic example the developers point to is a contact form plugin like Contact Form 7, which by default loads its scripts and styles on every page of a site, even though the form itself might only live on one contact page. With the Script Manager, you disable it everywhere and re-enable it just on that page. The same logic applies to social sharing buttons, which usually only need to appear on blog posts, not on your homepage or checkout page.
For advanced users, the Script Manager supports Regex pattern matching to disable groups of scripts at once, and an “MU mode” that goes a step further than hiding a script on the front end — it can stop a plugin’s queries from running against the database at all on pages where it isn’t needed, a meaningfully deeper level of control than most performance plugins offer. Because this kind of control can be risky to configure blind, a built-in Testing Mode lets you preview the effects of your changes privately before they go live for visitors.
Database Cleanup and Scheduled Maintenance
WordPress databases accumulate junk quietly over time. Post revisions pile up every time you save a draft, auto-drafts get created every 60 seconds while you’re writing, spam comments collect without strong filtering, and expired transients sit in the wp_options table long after they’ve stopped being useful.
None of this is dramatic in isolation, but sites running for a few years can end up with hundreds of thousands of unnecessary database rows, which slows down every query the site runs.
Perfmatters includes one-click cleanup for revisions, auto-drafts, spam comments, trashed posts and comments, and expired transients, along with the ability to optimize database tables to reclaim wasted space. You can also set limits going forward — like capping how many revisions WordPress keeps per post — so the mess doesn’t build back up.
For agencies managing multiple client sites, a scheduling option runs this cleanup automatically on a daily, weekly, or monthly basis without needing to remember to do it manually.
Lazy Loading Images, Video, and iFrames
Lazy loading delays the download of anything below the visible screen — images, embedded videos, iframes, even CSS background images — until a visitor actually scrolls down to it. The developers report an average 33% reduction in load times from enabling it across their own testing, with the benefit scaling based on how media-heavy a page is.
A few details make this more than a basic on/off switch. Embedded YouTube and Vimeo videos are swapped for a lightweight static thumbnail with a play icon; the real video iframe only loads once a visitor clicks it, avoiding a full embedded video player loading for people who never press play.
Images above the fold are automatically excluded from lazy loading, which matters more than it sounds — lazy-loading your hero image or Largest Contentful Paint element actually hurts your LCP score rather than helping it, so getting that exclusion right is important.
Perfmatters also automatically adds missing width and height attributes to images, stopping the page from jumping as images load in (a Cumulative Layout Shift fix), and includes DOM monitoring so lazy loading keeps working correctly on pages with infinite scroll or dynamically loaded content.
Deferring and Delaying JavaScript
“Eliminate render-blocking resources” is one of the most common warnings site owners see in PageSpeed Insights, and it usually comes down to JavaScript loading in a way that blocks the page from painting. Perfmatters offers two related but distinct fixes.
Deferring a script means it still loads during the page load, just after the rest of the page has already rendered — a safe default for most scripts. Delaying goes further: the script doesn’t load at all until the visitor actually does something, like moving their mouse, scrolling, or tapping the screen.
For scripts that genuinely don’t need to run until a user engages anyway — Google Tag Manager, Google Analytics, the Facebook pixel, Google AdSense, and again, WooCommerce cart fragments — delaying can remove a large chunk of unnecessary work from the critical rendering path entirely.
You can delay specific scripts, delay everything except a defined exclusion list, or set a maximum timeout so scripts still load automatically for visitors who land and read without ever scrolling or clicking.
Minifying JavaScript and Removing Unused CSS
Minification strips out the whitespace, comments, and unnecessarily long variable names that make code easier for humans to read but add nothing for a browser, shrinking file sizes and slightly speeding up parsing. Perfmatters handles this automatically for both JavaScript and CSS, with exclusion rules for any file that shouldn’t be touched.
Removing unused CSS addresses a subtler problem: most WordPress themes and plugins load a full stylesheet even if a given page only uses a fraction of its rules. Perfmatters calculates which CSS is actually needed per page and can delay, load asynchronously, or fully strip out the rest, with exclusions available down to a specific selector or class name if a particular style needs protecting.
Because it’s calculated page-by-page rather than sitewide, this tends to have a bigger impact on First Contentful Paint and Largest Contentful Paint than sitewide CSS trimming alone.
Hosting Fonts and Analytics Locally
Two specific third-party requests get special treatment in Perfmatters, and both exist because of the same underlying browser change: modern browsers now partition the cache per website, so a font or script cached from visiting one site no longer benefits a visitor on a different site. That used to be the argument for loading Google Fonts or Google Analytics from Google’s own servers (wide, shared caching); it isn’t anymore.
Perfmatters can automatically download and host your Google Fonts locally, or on your own CDN, cutting out the extra DNS lookup and giving you control over cache expiration headers, plus a font-display swap option that keeps text visible while the font itself is still loading.
The same logic applies to Google Analytics: Perfmatters can host the tracking script on your own server, choosing between the full gtag.js implementation (around 51.5 KB) or a stripped-down minimal analytics script (around 2.2 KB) for sites that don’t need every GA4 feature.
IP addresses are anonymized by default for GDPR purposes, admin visits can be excluded from tracking, and the feature integrates directly with MonsterInsights for sites already using it.
Preloading, Resource Hints, and Speculative Loading
Beyond removing and delaying things, Perfmatters also helps the browser get a head start on resources it will need soon. This includes the standard set of resource hints: preload (fetch a specific file, like a critical font or CSS file, immediately), preconnect (open a connection to a third-party domain before it’s actually needed), and DNS-prefetch (resolve a domain name ahead of time). It also supports fetch priority, letting you tell the browser which resources matter most for the initial render.
The more advanced piece is Speculative Loading, a genuinely new browser-level capability that WordPress added to its core starting with version 6.8. When a visitor hovers over a link, the browser can prerender the destination page in the background, so by the time they actually click, the page is already loaded — the navigation feels instant.
WordPress core ships this turned on by default, but in a conservative configuration (a lighter prefetch mode with cautious triggering). Perfmatters unlocks the more aggressive prerender mode and lets you choose a moderate or eager trigger setting, which is where most of the perceived speed benefit comes from.
Code Snippet Manager
Added more recently, this feature lets you write and manage custom PHP, CSS, JavaScript, and HTML snippets directly inside Perfmatters instead of relying on a separate snippets plugin or manually editing theme files. The key architectural choice is that snippets are stored as flat files rather than in the database, so unlike many code-snippet plugins, adding snippets doesn’t add extra database queries to every page load.
Each snippet can be optimized individually — loaded as an external file or inline, minified, deferred, delayed until interaction, or preloaded — and a conditions builder lets you restrict where a snippet runs using URL matching, user roles, or Regex, with no limit on how many rules you stack.
There’s also built-in error checking designed to catch a broken snippet before it takes down the site, a safe mode for troubleshooting, and import/export support for reusing snippets across projects.
Extras for Security, CDN Integration, and Managing Multiple Sites
A handful of smaller features round out the plugin. You can change your WordPress login URL away from the default /wp-admin/, which some sites see 10,000 or more automated login attempts against per day — moving it cuts that traffic, and the server resources it consumes, almost entirely, as a side benefit alongside the obvious security value.
A CDN rewrite tool lets you point your site’s static assets to a CDN URL without manually editing files, with control over which directories are included and which file types are excluded.
For agencies and developers running many sites, the unlimited-site license adds WordPress multisite support, including the ability to configure settings once on a network’s main site and push that configuration out to every subsite.
Perfmatters also has full WP-CLI support, so activating the plugin, managing licenses, toggling individual settings, and clearing caches can all be scripted from the command line rather than clicked through in the dashboard — useful for anyone managing performance across a large number of WordPress installs at once.
Real Performance Numbers: What to Actually Expect
The developers publish two of their own sites as case studies. Woorkup.com, Brian’s marketing blog, pulls in more than 100,000 unique visitors a month and loads in under 400 milliseconds with a perfect 100 Core Web Vitals score; the Perfmatters marketing site itself, which runs as an online store, reports the same sub-400ms load time and 100 score.
Both are useful as proof of what’s achievable, though it’s worth remembering these are sites built and maintained by the team that built the plugin, on infrastructure fully optimized around it — not necessarily what a typical buyer should expect to replicate immediately after installation.
A more useful signal comes from independent customer reports scattered across Trustpilot reviews, which describe a wide range of before-and-after results rather than a single number. One ecommerce site owner described two stores moving from the low 40s to the high 90s on mobile PageSpeed and a perfect 100 on desktop. Another reviewer’s Largest Contentful Paint dropped from 4 seconds to 2.4 seconds.
A nine-year customer described running the plugin across roughly 100 sites, including one 318-product WooCommerce store carrying 33 active plugins and the notoriously heavy Divi theme, which still consistently scores 99 on PageSpeed Insights. A separate reviewer mentioned a mobile score as low as 29 before getting help sorting it out.
Two things stand out across these accounts. First, the size of the improvement tracks closely with how bloated the site was to begin with — sites starting from a very low baseline see the largest jumps, while already-reasonably-optimized sites see smaller, incremental gains.
Second, several reviewers explicitly mention that hitting the highest scores required some manual configuration, either their own trial and error or direct help from Perfmatters support, rather than happening automatically the moment the plugin was activated.
That’s a meaningful distinction: Perfmatters gives you the tools to reach very high performance scores, but for a subset of users, reaching them isn’t entirely a “flip the switches and walk away” experience.
Pricing and Plans
Perfmatters is sold directly from its own website as an annual license, with three tiers based on how many sites you need to cover:
| Plan | Price | Sites Covered | Multisite Support |
| Personal | $29.95/year | 1 site | No |
| Business | $59.95/year | 3 sites | No |
| Unlimited | $124.95/year | Unlimited | Yes |
Every tier includes a year of updates and direct support, and licenses renew automatically at the end of the term — though renewals come with an automatic 15% discount off the listed price, and auto-renewal can be cancelled at any time. If it turns out not to be the right fit, there’s a 30-day money-back guarantee, which several reviewers mentioned requesting before ultimately deciding to stay (more on that below). Existing customers can also upgrade to a higher tier at any point, with the price difference prorated rather than charged in full again.
For context, that puts Perfmatters in the same general price range as other premium WordPress performance plugins on the market, though the unlimited-site tier is priced competitively for agencies managing a large portfolio of client sites, since many competitors charge per site rather than offering a flat unlimited option.
Customer Support: The Feature Everyone Talks About
If there’s one theme that dominates Perfmatters’ reviews more than any single plugin feature, it’s the support. Nearly every five-star Trustpilot review mentions Brian or Brett by name, and it’s not incidental — the company doesn’t outsource support to a separate team, so tickets go directly to the two people, and small internal team, who actually built the product.
The speed of that support shows up in specific, concrete detail rather than vague praise. One customer described a plugin update that triggered a fatal error on a number of his sites; he submitted a support ticket and had a working explanation, an apology, and a patched download link within 12 minutes. In the company’s own reply to that review, they confirmed the cause: a missing sub-library dependency introduced alongside a new “silo” feature in that release, since fixed to prevent it from happening again.
What stands out more than raw speed is how hands-on the help tends to be. Multiple reviewers describe support actually logging into their site to fix a setting directly rather than just explaining what to click.
A food blogger recovering from a hosting migration described getting a detailed, screenshot-by-screenshot walkthrough comparing her site’s structure to a faster competitor’s — well beyond a typical support ticket response. Another user having font-related loading issues was told to simply switch fonts entirely, advice that had nothing to do with the plugin’s own settings but solved the actual problem.
This pattern — support going beyond the plugin’s own configuration to diagnose a site’s broader performance issues — comes up often enough in the reviews that it looks less like a lucky one-off and more like a deliberate part of how the company operates.
What Customers Consistently Praise
Beyond support, a few patterns repeat often enough across reviews to be worth calling out on their own.
Switching from other tools. A striking number of reviewers mention moving to Perfmatters after using something else first — WP Rocket, W3 Total Cache, LiteSpeed Cache, WP Fastest Cache, and newer entrants like FlyingPress, Nitro, and Swift AI all come up by name.
One reviewer who tested six different optimization plugins picked Perfmatters as the best of the group, even against pricier competitors. Another described trying three other tools on a site stuck around a 90 mobile PageSpeed target; two didn’t get close, and a third briefly reached the target but broke the site with no clear way to fix it, before Perfmatters got the site to 95+ without the same issues.
Specific feature callouts. The Script Manager’s page-level control comes up frequently as the standout feature, especially from users managing sites with a lot of plugins. A couple of more technical reviewers specifically compared Perfmatters’ unused CSS removal and lazy loading favorably against WP Rocket’s equivalent tools, describing both as more configurable and more effective in practice.
Documentation and ease of use. Multiple reviewers, including some who described themselves as non-technical, mentioned that clear one-by-one setting explanations combined with thorough written documentation made a plugin with this many advanced options approachable rather than overwhelming.
Long-term loyalty. It’s common to see reviewers noting they’ve used the plugin for two, five, even nine years, still actively installing it on every new site they build. That kind of sustained, repeat usage — rather than a one-time purchase followed by silence — is generally a more reliable signal of genuine satisfaction than any individual five-star review on its own.
Where Perfmatters Falls Short
A plugin with this many five-star reviews can start to look too good to be true, so it’s worth looking closely at the minority of feedback that isn’t glowing, along with a few caveats that show up even inside otherwise-positive reviews.
Updates occasionally break things. The clearest example is the incident mentioned above: an update caused a fatal error on multiple sites for a nine-year customer, traced to a missing dependency the company introduced with a new feature.
It was fixed quickly and openly acknowledged, but it’s a real reminder that a plugin this deeply integrated into how scripts, styles, and database queries run can occasionally conflict with a specific site’s configuration after an update — a risk shared by any performance plugin this powerful, but a risk nonetheless.
A one-star review from 2021 describes a more serious version of the same problem: an update that broke the site’s layout outright, which the reviewer contrasted unfavorably with the update stability he’d experienced using WP Rocket and Autoptimize.
No listing on WordPress.org. That same reviewer raised a second, separate point worth taking seriously: Perfmatters is sold exclusively from its own website rather than being listed in the free WordPress.org plugin directory.
That means it doesn’t have the open, public review and support-forum history that free plugins accumulate on WordPress.org, where anyone can browse ratings and unresolved support threads before installing. Instead, prospective buyers are largely working from the company’s own site and third-party review platforms like Trustpilot — a real, if common, trade-off of buying a premium plugin sold direct-to-consumer rather than distributed through WordPress’s open ecosystem.
There’s a genuine learning curve for some users. Reading closely, a number of five-star reviews actually start with a rockier first chapter than the final rating suggests — a self-described beginner initially requesting a refund after the plugin “didn’t work as supposed to” in their hands, or a user who “struggled with the plugin and gave up” before support intervened.
These stories end well because support stepped in, but they do suggest some of the more advanced settings — Script Manager exclusions, delay timing, CSS exclusions — aren’t always intuitive enough to get right on the first try without help, especially for less technical users configuring alone.
The review distribution itself is worth noticing. Trustpilot shows Perfmatters sitting at 99% five-star reviews with a flat 0% at four, three, and two stars, and under 1% at one star — an unusually polarized split with almost nothing in the middle.
Part of that likely reflects genuine satisfaction, but it’s also worth noting that a large share of the five-star reviews explicitly describe being written immediately after a positive support interaction. That suggests the review sample may lean toward customers who reached out with a problem and had it solved, rather than a random cross-section of every buyer, including the ones who never had a reason to contact support or leave a review either way. This doesn’t make the reviews dishonest — it’s a common pattern for review collection generally — but it’s useful context when weighing a 4.9-star average.
It doesn’t do everything. This is more of a scope clarification than a complaint, but an important one: Perfmatters is not a caching plugin, an image compressor, or a full hosting replacement. Getting the results described throughout this review generally requires pairing it with decent hosting and, in many cases, a separate caching layer — a deliberate design choice by the developers, but one that means the sticker price isn’t the full cost of a fully optimized WordPress stack.
How Perfmatters Fits Into a Complete WordPress Speed Strategy
The company is upfront on its own site that Perfmatters isn’t a magic fix on its own, and the broader performance guidance they publish backs that up. A few pieces of that wider picture are worth understanding before judging the plugin in isolation.
Hosting comes first. No amount of front-end optimization compensates for a slow server response time, and the developers are explicit that they run their own recommended stack on Kinsta, citing container-based isolation (so no site shares resources with another), a built-in HTTP/3 CDN, and dozens of global server locations, alongside alternatives like BigScoots, Rocket.net, and InstaWP.
Theme choice matters almost as much. Their own guidance repeatedly points to GeneratePress, a lightweight theme built around a modular system where unused features genuinely don’t load any code, paired with the block-based GenerateBlocks plugin as an alternative to heavier page builders.
Images are usually the biggest single opportunity. On a typical mobile page, images make up close to half of total page weight — more than any other resource type — which is why compressing and converting them to WebP or AVIF (roughly 59% and up to a further 29% smaller than traditional JPG or PNG files, respectively) tends to move the needle before lazy loading even comes into play.
And critically, caching sits outside Perfmatters entirely. Whether that’s server-level caching from a managed host, Cloudflare’s edge caching, or a dedicated caching plugin, something needs to handle full-page cache delivery, because Perfmatters was deliberately built to complement that layer rather than duplicate it.
Put together, Perfmatters works best as one well-built piece of a stack, not a standalone fix for a fundamentally slow foundation — which lines up with how the company frames its own product, and with how customers in the reviews describe getting their best results: usually alongside good hosting, not instead of it.
Who Perfmatters Is Really For
Based on both the feature set and the pattern of who’s writing the positive reviews, Perfmatters tends to be the strongest fit for:
- Agencies and freelance developers managing several to dozens of client sites, where the unlimited license, multisite push-settings feature, and WP-CLI support directly address the workflow of configuring many sites consistently and quickly.
- WooCommerce store owners, given how specifically the plugin targets cart fragments, WooCommerce scripts, and widgets that commonly slow down ecommerce pages without adding any customer-facing value.
- Content sites and blogs with a lot of media, where lazy loading, font optimization, and the Script Manager’s ability to strip plugin bloat down to only what’s actually needed per page tend to produce the most noticeable gains.
- Site owners willing to engage a little, whether that means reading documentation, testing settings carefully, or reaching out to support, since several of the best outcomes in the reviews involved at least one round of configuration help rather than a fully hands-off install.
It’s a weaker fit for anyone wanting a single plugin that handles caching and optimization together with zero configuration, since Perfmatters intentionally leaves caching to something else, or for extremely simple, low-traffic sites already running comfortably fast on a good host, where the added configuration time may not be worth the marginal gain.
Final Verdict
Judged purely on feature depth, Perfmatters earns its reputation. The Script Manager alone offers a level of per-page, per-device control that few competing plugins match, and the surrounding toolkit — lazy loading, JavaScript delay, unused CSS removal, local font and analytics hosting, Speculative Loading — covers nearly every major PageSpeed Insights warning a WordPress site is likely to trigger.
The reviews add a second, equally important layer to that picture: a support team that repeatedly goes beyond what a plugin license typically buys, to the point where it’s arguably as much a reason people stay as the plugin itself. That’s a genuine strength, but it also means outcomes can depend partly on how much a given site owner engages with that support rather than purely on default settings.
The honest caveats are real but proportionate: occasional update-related bugs, no presence on the open WordPress.org directory, and a learning curve on the more advanced settings for less technical users. None of these erase what the plugin does well, but they’re worth knowing going in rather than discovering after the fact — which is really the point of reading customer reviews in the first place.
Frequently Asked Questions
Does Perfmatters replace the need for a caching plugin?
No. Perfmatters complements caching by optimizing scripts, CSS, images, fonts, and databases. Use separate page caching through your host, CDN, or caching plugin.
Will Perfmatters work with Elementor, Divi, or Kadence?
Yes. Perfmatters works with major themes and page builders, though complex sites may need extra exclusions and optimization fine-tuning.
Can Script Manager or Remove Unused CSS break my site?
Yes. Aggressive settings can cause issues. Use testing mode first, then disable or adjust settings if anything breaks.
How is Perfmatters different from WP Rocket?
Perfmatters doesn’t provide page caching. It focuses on granular optimization, while WP Rocket combines caching with performance optimization features.
Do I need coding knowledge to use Perfmatters?
No. Most settings are simple toggles. Advanced Script Manager rules and JavaScript exclusions may require some technical knowledge.
Is Perfmatters good for WooCommerce?
Yes. It includes WooCommerce-specific optimizations for cart fragments, scripts, styles, and dashboard features to reduce unnecessary requests.
Why isn’t Perfmatters on WordPress.org?
Perfmatters is a premium plugin sold directly through its website rather than distributed through the free WordPress.org plugin directory.
What speed improvement can I realistically expect?
Results vary by site. Bloated websites can see major improvements, while already optimized sites usually experience smaller performance gains.
Does Perfmatters improve Core Web Vitals?
Yes. By reducing unnecessary JavaScript, render-blocking resources, and layout shifts, Perfmatters can improve LCP, INP, and CLS.
Does Perfmatters itself add bloat?
No. Perfmatters doesn’t normally load its own front-end CSS or JavaScript. It primarily removes and optimizes code generated by other plugins and themes.
5 Perfmatters Alternatives
- WP Rocket — The most established premium caching plugin, known for deep support and frequent updates, though recent pricing changes have frustrated long-time users.
- FlyingPress — A lightweight, fast-loading alternative built by a small team, praised for simplicity but with some rough edges after major updates.
- NitroPack — An all-in-one optimization service with a free plan, offering strong automated results and support that has improved significantly in recent years.
- LiteSpeed Cache — A free, developer-grade caching plugin best suited for sites on LiteSpeed-compatible hosting, backed by unusually responsive technical support.
- BerqWP — A zero-configuration, cloud-based optimization plugin aimed at non-technical users who want strong PageSpeed scores without touching settings.