下载插件Redis Object Cache:
配置:
1、wp-config.php:
// Redis Object Cache
define('WP_CACHE', true);
define("WP_CACHE_KEY_SALT",'cnsec');
define('WP_REDIS_HOST',['127.0.0.1']);
define('WP_REDIS_SERVERS', [
'tcp://127.0.0.1:6379?database=0&alias=master'
]);
//Redis连接密码,如果Redis设置了密码
// define( 'WP_REDIS_PASSWORD', 'secret' );
2、wp-content/目录下object-cache.php:
database配置为同一个,
如果需要配置密码则添加password项:
$parameters = [
'scheme' => 'tcp',
'host' => '127.0.0.1',
'port' => 6379,
'database' => 0,
'password' => '123',
'timeout' => 1,
'read_timeout' => 1,
'retry_interval' => null,
];
3、redis配置密码