what is Redis Cache Pro?
There are different discussion threads for this plugin in the forum. From now on I will keep this plugin constantly updated. The latest version of the plugin is not available on any sites. It will be shared only for Babiato Lovers.
To prevent GPL site owners, only members with over 100 messages will be able to see the zip password. I’ve been testing the plugin for a 1 week. It did not give any license errors. I couldn’t see the message count option in the hide plugin. You can send a private message until the problem is fixed. (A zip password will not be sent to less than 100 messages or suspicious memberships.)
When the plugin is installed, the following data is automatically sent to the developer site;
License code,
Admin panel address,
Site Address,
isMultisite,
OpenSSL version,
Plugin version,
Do need to worry?
Absolutely no, I removed all post/license data. If we didn’t remove this data, the developer could delete the plugin remotely.
Recommended Configuration;
Code:
define(‘WP_REDIS_CONFIG’, [
‘token’ => ‘Babiato’,
‘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);
High Performance Configuration; (For expert users only.)
Code:
define(‘WP_REDIS_CONFIG’, [
‘token’ => ‘Babiato’,
‘host’ => ‘127.0.0.1’,
‘port’ => 6379,
‘database’ => 0, // change for each site
‘timeout’ => 1.0,
‘read_timeout’ => 1.0,
‘compression’ => ‘zstd’,
‘serializer’ => ‘igbinary’,
‘async_flush’ => true,
‘split_alloptions’ => true,
‘prefetch’ => true,
‘debug’ => false,
‘save_commands’ => false,
]);
define(‘WP_REDIS_DISABLED’, getenv(‘WP_REDIS_DISABLED’) ?: false);
Recommended if you have a large number of visitors or queries.
For “High Performance configuration” setting; redis and redisphp need to be specially compiled. It needs to be compiled with igbinary and zstd.
Redis Cache Pro features
A business class Redis object cache backend for WordPress
Truly reliable, highly optimized, and fully customizable, with a dedicated engineer when you most need it.
- Rewritten for raw performance
- WordPress object cache API compliant
- Easy debugging & logging
- Cache prefetching and analytics
- Fully unit tested (100% code coverage)
- Secure connections with TLS
- Health checks via WordPress & WP CLI
- Optimized for WooCommerce, Jetpack & Yoast SEO
Redis Cache Pro Demo Online
Redis Cache Pro changelogs
“v1.16.4 – 2022-10-31
Added
Added support for WordPress 6.1’s wp_cache_supports()
Changed
Refer to “”external cache”” as “”datastore”” everywhere
Hide wp_cache_get_last_changed() and wp_cache_flush_group() in Query Monitor
Fixed
Fixed inverted “”Relay Cache”” diagnostic
Fixed rare undefined OPT_MAX_RETRIES constant error
Don’t use WordPress 5.3’s WP_REST_Request::has_param()”
“Download Redis Object Cache Pro v1.16.3 Nulled Free
v1.16.3 – 2022-10-09 – Big Thanks To @Legolas
Added
- Added new
wp redis status
command - Added
objectcache_omit_settings_pointer
filter - Added
relay.cache
configuration option”