惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
人人都是产品经理
人人都是产品经理
小众软件
小众软件
博客园 - Franky
WordPress大学
WordPress大学
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
博客园 - 【当耐特】
IT之家
IT之家
G
Google Developers Blog
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
云风的 BLOG
云风的 BLOG
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
V
Visual Studio Blog
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
GbyAI
GbyAI
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Which of Your Plugins Is the Heaviest? Now You Can See It...
WP Multitool · 2026-06-18 · via DEV Community

WP Multitool

Originally published on https://wpmultitool.com/2026/04/08/plugin-performance-score/

New in WP Multitool 1.1.19 – Plugin Performance Score is the newest module in WP Multitool. It adds real benchmark data to your WordPress Plugins page so you can see exactly which plugins are the heaviest. Here’s what it does and why it matters.

Every WordPress developer has had this moment

The site is slow, you open Query Monitor, and you see 180 database queries. But which plugin is responsible for most of them?

Query Monitor tells you what happened during a single page load. It’s a debugger – and QM4 just made that debugger a lot better with a new timeline view and client-side rendering. But it still doesn’t answer the fundamental question: is this plugin heavy in general, or just heavy on this particular page?

That’s two different problems. And nobody was solving the first one with real data.

The problem with guessing

When I help people audit their plugin stacks, the conversation usually goes like this: “I think Elementor is heavy.” “I heard Jetpack is a resource hog.” “Someone on Reddit said WooCommerce adds 70 queries.”

Some of those are right. Some are outdated. And most people don’t have time to benchmark every plugin themselves. They just install stuff and hope for the best.

What if you could see each plugin’s performance impact right on the Plugins page? Not based on opinions – based on actual measurements.

Plugin Performance Score

The Performance column on the Plugins page – every plugin gets a score based on real benchmark data.
That’s what the new module in WP Multitool 1.1.19 does. It adds a Performance column to your WordPress Plugins page showing three things for each installed plugin:

A score from 0 to 100
PHP memory usage
Number of database queries

The data comes from makewpfast.com, where we benchmark plugins in isolated Docker containers. No caching, no interference from other plugins, just a clean WordPress install with one plugin active at a time. We measure memory and queries, then calculate a score.

Here’s what it looks like for some plugins you probably have installed:

Plugin
Score
Memory
Queries

Akismet
92
4 MB
5

Contact Form 7
82
6 MB
5

Jetpack
71
6 MB
9

Elementor
50
6 MB
42

WooCommerce
26
16 MB
70

No surprises for the extremes – WooCommerce is heavy, Akismet is light. But the middle is interesting. Jetpack scores lower than Contact Form 7 even though both use 6 MB of memory, because Jetpack runs nearly twice the queries. The score reflects that.

How scoring works

I didn’t want the score to be some black box number. It’s a formula you can verify yourself.

The baseline is a clean WordPress install – about 4 MB memory and 4 database queries. Everything above that is overhead. The formula uses a logarithmic scale, which means the first 10 extra queries hurt your score more than going from 100 to 110. That makes sense intuitively – if your plugin adds 10 queries to a minimal site, that’s a big deal. If it adds 10 more on top of 100, that’s noise.

Two important properties: the score is deterministic (same memory and queries always produce the same number), and it doesn’t change when we add new plugins to the database. If a future plugin uses 50 MB and 300 queries, it’ll score 0 – but WooCommerce stays at 26. No one else’s score shifts.

We have data for about 5,000 plugins. If yours isn’t in there, you’ll see a dash instead of a score. We’re working on expanding coverage.

What to do with this information

The score isn’t telling you to uninstall WooCommerce. If you run a store, you need it. But it does tell you where to focus your optimization effort.

If you see a plugin scoring below 50 and you’re not sure you need it – that’s a conversation worth having. If you see three plugins in the 60-70 range doing similar things, maybe it’s time to consolidate.

And if your site has autoload bloat, the heaviest plugins are usually the biggest contributors. Now you can see that connection at a glance instead of guessing.

The module loads the benchmark data from a static file bundled with the plugin. No external API calls, no performance impact on your site. It’s about 220 KB and gets cached by PHP’s opcache after the first load. The column only appears on the Plugins page – it doesn’t touch your frontend or any other admin page.

Try it

Plugin Performance Score ships with WP Multitool 1.1.19, enabled by default. Install the plugin, go to your Plugins page, and the Performance column is there.

Click any score badge to see the full benchmark report on makewpfast.com.

This is one of 14 modules included. Get WP Multitool – $199/year