PluginProbe
xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN / 1.3.2
xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN v1.3.2
1.3.2 1.3.1 1.3.0 1.2.4 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.2.0 All 28 releases
← All changes | includes/class-plugin.php +8 -0 1.3.11.3.2 View file →
@@ -93,8 +93,16 @@
93 93 // Integrations that clear OTHER plugins' caches of rendered output
94 94 // (Elementor's element cache + generated CSS). Registers a listener
95 95 // only; nothing runs until Cache::purge_render_caches() asks.
96 96 Render_Caches::boot();
97 + // Server_Caches needs no boot(): Cache::dispatch_purge_event() calls it
98 + // directly so a throwing third-party listener cannot skip it.
99 +
100 + // Forward a full purge to a full-page cache owned by the WEB SERVER
101 + // (nginx FastCGI, via the host's Nginx Helper install). Registers a
102 + // listener on xspeed_after_purge_all only; it stands down unless
103 + // that cache is actually configured.
104 + Host_Page_Caches::boot();
97 105
98 106 // Register Free modules via the same action xspeed-pro uses, so
99 107 // the bootstrap path is symmetric across tiers.
100 108 add_action( 'xspeed_register_modules', array( $this, 'register_free_modules' ) );