Description
The WordPress plugin bottleneck most optimization tools ignore.
Cache plugins speed up the pages that are cached. Asset optimizers shrink CSS and JS. CDNs reduce latency to the edge. None of them fix the actual problem on dynamic requests: every active plugin loads, every time, whether it’s needed or not.
On a typical 30-plugin WordPress site, that’s 30 PHP class loads, 30 hook registrations, 30 database warm-ups — for every admin-ajax dispatch, every logged-in page, every REST API call. A plugin you installed once for a single feature is now taxing 100% of your traffic.
Accelerator fixes this at the dispatch layer.
On every request, it classifies what’s being asked (frontend guest, logged-in, REST, admin-ajax, cron, CLI) and skips the plugins that aren’t needed for that specific request class — using a 207-plugin rule library curated for safety, plus per-URL overrides you define.
What it does, specifically
- Plugin Skipper. Unloads non-critical plugins for specific request classes. WooCommerce stays active on
/cartand/checkoutbut skips on your homepage where no one buys anything. - Admin-Ajax Isolator. For specific
wp_ajax_*actions, loads only the plugin that owns the action. Every other plugin is skipped for that one dispatch. One beta tester measured a JetEngine admin-ajax dispatch drop from 1.9 seconds to 170 milliseconds — 10-12× faster. - Per-Page Rules. Pattern-match URLs, override the defaults. “Bookly only on
/booking/*” turned a yoga studio’s 15-second homepage into a 0.8-second homepage — 18× faster, with one rule. - Shadow Mode. Every new rule runs in simulate-only mode for 24 hours before going live. The dependency resolver verifies safety, and only then does anything actually happen to live requests.
- Safe Mode. One click in the admin bar bypasses every rule instantly. No config lost, no reinstall — the site reverts to baseline in under a second.
- Deep Telemetry. p50 / p95 / p99 TTFB, per-request-class breakdown, per-URL filter, isolator activity log.
What it doesn’t do
We don’t cache. We don’t minify. We don’t bundle a CDN. We don’t touch WordPress core files. Accelerator runs entirely as a mu-plugin and uninstalls clean — remove the folder, site is back to stock.
Pair it with your existing cache plugin (LiteSpeed, WP Rocket, FlyingPress) — they address different layers, and the gains stack.
Real numbers from beta testers (with written permission)
“isolate in action, so cool. without it it is 1.7-2.0 sec” — Edmunds Priede, developer · 1.9s → 170ms on JetEngine admin-ajax (10-12× faster)
“Drop dead amazing. Test results with the new version show a massive improvement.” — Jay, yoga studio · 15s → 0.8s homepage LCP (18× faster)
Founding Member pricing
We’re in active beta (v0.2.0). To seed the first 30 serious users across all three tiers, we’re offering lifetime access at founding-member pricing. After the beta, lifetime offers end and the product switches to annual subscriptions at higher pricing. When 30 seats sell across all tiers, founding closes.
Compare tiers
| Solo | Agency | Studio | |
|---|---|---|---|
| Active domains | 1 | 5 | Unlimited |
| Founding price | $99 | $199 | $399 |
| Regular (post-beta) | $149 | $299 | $599 |
| Lifetime updates | ✓ | ✓ | ✓ |
| Email support | ✓ | ✓ | ✓ |
| 30-day money-back | ✓ | ✓ | ✓ |
What you get
- Lifetime updates and bug fixes during the active development period (best-effort, no SLA)
- Email support — typically within 24 hours
- Immediate access to installer zip + license key (delivered by email after purchase)
- 30-day money-back guarantee — no questions, no fuss

Reviews
There are no reviews yet.