Quikc
Quikc is a full-page caching and performance suite for WordPress. On the first anonymous visit to a page, it writes a static HTML snapshot to disk; every anonymous visitor after that is served the snapshot directly, skipping the PHP and database work entirely.
What sets Quikc apart from a typical page-cache plugin is that it learns from real traffic instead of treating every URL the same. A lightweight runtime heatmap tracks which pages are actually being requested, and that data feeds two other modules: Adaptive TTL, which automatically keeps popular pages cached for longer, and Intelligent Preload, which warms the hottest known URLs first so real visitors are far less likely to ever see a MISS.
Key features
- Traffic-learned Adaptive TTL — cache lifetime automatically extends for URLs the heatmap identifies as high-demand, instead of one fixed expiry for the whole site.
- Intelligent, heat-ranked preloading — the background warmer prioritizes the URLs your own visitors actually request most, on top of recently modified content.
- Stale-while-revalidate — once a cached page ages past its TTL, Quikc still serves the stale copy instantly and refreshes it in the background, so no visitor ever waits on a cold cache.
- Atomic, race-safe disk writes — every cache file is written to a temp file and moved into place, so a request can never read a half-written page.
- Device-aware cache variants — optional separate mobile/desktop copies prevent responsive layouts from being cached against the wrong device.
- Fault-isolated module architecture — each feature (caching, minifier, preloader, headers, diagnostics) boots independently inside its own error boundary, so one module failing can’t take the rest of the site down.
- Safe by default — logged-in users, non-GET requests, admin/AJAX/REST requests, and query-string variants are never cached;
/cart,/checkout, and/my-accountare excluded out of the box. - One-click purge from the dashboard, the admin toolbar, or a per-URL button next to any learned hot URL.
- REST API and WP-CLI (
wp quikc purge|warm|status) for deploy hooks and CI/CD pipelines — no admin-ajax.php required. - Whitespace/comment HTML minifier that never touches the inside of
<script>,<style>,<pre>, or<textarea>blocks. - Opt-in security headers — X-Content-Type-Options, X-Frame-Options, Referrer-Policy, Permissions-Policy, and HSTS on HTTPS, plus a filter to add your own CSP.
- Built-in self-diagnostics — OPcache, GZIP, persistent object cache, cache directory writability, Action Scheduler availability, and current cache size, all on one screen.
- No phone-home, no forced upsells — every feature above is included; nothing is gated behind a paid tier.
Quikc also ships a guided in-admin Setup screen so a non-technical site owner can confirm caching is actually working (checking the X-Quikc-Cache response header) within a couple of minutes of activation.
