Static Cache
Disk-based static HTML cache with automatic invalidation. Serves cached pages directly without WordPress initialization.
Free static cache, automation, and Beast mode for WordPress
# Install via WP-CLI
wp plugin install speedmate --activate
# Or download from GitHub
wget https://github.com/fabriziosalmi/speedmate/releases/latest/download/speedmate.zip
wp plugin install speedmate.zip --activateSpeedMate provides enterprise-grade performance optimization for WordPress:
Configure SpeedMate via:
// Example: Programmatic configuration
update_option('speedmate_settings', [
'mode' => 'beast',
'cache_ttl' => 3600,
'webp_enabled' => true,
'critical_css_enabled' => true,
]);# Flush entire cache
wp speedmate flush
# Warm cache for specific URLs
wp speedmate warm --urls=https://example.com/,https://example.com/about
# View cache statistics
wp speedmate stats
# Plugin information
wp speedmate info
# Garbage collection
wp speedmate gcAll cache operations available via REST API:
# Flush cache
curl -X POST https://site.com/wp-json/speedmate/v1/cache/flush \
-H "X-WP-Nonce: $NONCE"
# Get statistics
curl https://site.com/wp-json/speedmate/v1/stats
# Batch operations
curl -X POST https://site.com/wp-json/speedmate/v1/batch/warm \
-H "Content-Type: application/json" \
-d '{"urls":["https://site.com/page1","https://site.com/page2"]}'wp-content/cache/speedmate/GPL-3.0 License - Free and open source