Description
Object Cache Pro is a high-performance WordPress plugin designed to enhance your website’s speed and reliability by optimizing object caching through seamless integration with Redis.
Key Features:
- Raw Performance: Engineered from the ground up to minimize unnecessary Redis reads and writes, maintaining a minimal memory footprint for optimal speed.
- Continuous Testing: Over 1,500 test cases with 100% coverage ensure compatibility across supported PHP versions (7.2 – 8.3) and Redis instances (4.0 – 7.0).
- WooCommerce Optimization: Extensively tested and optimized for WooCommerce, with proactive monitoring of upcoming releases to prevent caching issues.
- Debugging & Logging: Opt-in logging and detailed error reporting facilitate easy troubleshooting, with support for custom PSR-3 loggers.
- API Compliance: Fully adheres to WordPress’ Object Cache API, ensuring consistent and error-free performance.
- Seamless Integration: Tight integration with WordPress, featuring a dashboard widget, Site Health integration, WP CLI commands, and compatibility with Query Monitor and Debug Bar for comprehensive cache insights.
- Future-Proof Design: Modular codebase allows for quick adoption of new extensions and backends, ensuring long-term adaptability.
By implementing Object Cache Pro, you can significantly improve your WordPress site’s performance, providing a faster and more reliable experience for your users.
add the following to the wp-config.php file before activating the plugin
define('WP_REDIS_CONFIG', [
'token' => 'e279430effe043b8c17d3f3c751c4c0846bc70c97f0eaaea766b4079001c',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'maxttl' => 3600 * 24 * 7, // 7 days
'timeout' => 1.0,
'read_timeout' => 1.0,
'split_alloptions' => true,
'debug' => false,
]);
define('WP_REDIS_DISABLED', false);