Redis Object Cache Pro是一个WordPress 的企业级 Redis® 对象缓存后端。相信大家都使用过它的免费版Redis Object Cache,现将我网站一直使用PRO发布出来给大家使用,它能大幅度提升你的网站速度。
使用方法:
打开你的网站根目录下的wp-config.php,将下面的配置文件复制到/* Add any custom values between this line and the “stop editing” line. */下面。
推荐配置:(我的网站使用的配置)
define('WP_REDIS_CONFIG', [
'token' => 'Vwwz2Xjf3RLsjJlBxBpLJbJcIRoi9rfszjmOqecMzQ1RB3K8jYQAOMkrCFDR',
'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,
'prefetch' => true,
'split_alloptions' => true,
'strict' => true,
'debug' => false,
]);
define('WP_REDIS_DISABLED', false);
高性能配置:(适用于专业玩家研究)
define('WP_REDIS_CONFIG', [
'token' => 'Vwwz2Xjf3RLsjJlBxBpLJbJcIRoi9rfszjmOqecMzQ1RB3K8jYQAOMkrCFDR',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0, // change for each site
'timeout' => 0.5,
'read_timeout' => 0.5,
'retry_interval' => 10,
'retries' => 3,
'backoff' => 'smart',
'compression' => 'zstd', // `zstd` compresses smaller, `lz4` compresses faster
'serializer' => 'igbinary',
'async_flush' => true,
'split_alloptions' => true,
'prefetch' => true,
'strict' => true,
'debug' => false,
'save_commands' => false,
]);
define('WP_REDIS_DISABLED', getenv('WP_REDIS_DISABLED') ?: false);
如果你的网站访问数量比较大,或者数据库查询比较多,建议使用高性能配置,高性能配置必须要安装PHP扩展igbinary与zstd。