迎接清晨
痛苦中自省

wordpress Redis 使用记录,让你的wordpress直接起飞

  1. 强烈建议redis配置认证密码和修改默认的端口,所以接下来我们需要修改wp-config.php这个文件
  2. 需要安装Nginx HelperRedis Object Cache
  3. 多个网站需要配置define('WP_CACHE_KEY_SALT', 'www.3i3c.cn'); //redis键值的前缀,建议设置为域名
  4. 建议使用Nginx openresty
define( 'WP_REDIS_HOST', '127.0.0.1' );  //Redis数据库地址
define( 'WP_REDIS_PORT', 6379 );  //Redis端口
// define( 'WP_REDIS_PASSWORD', 'secret' );  //请将secret替换为Redis密码(如果有密码,请去除前面的双斜杠注释
define( 'WP_REDIS_TIMEOUT', 1 );
define( 'WP_REDIS_READ_TIMEOUT', 1 );

// change the database for each site to avoid cache collisions
define( 'WP_REDIS_DATABASE', 0 );

// supported clients: `phpredis`, `credis`, `predis` and `hhvm`
// define( 'WP_REDIS_CLIENT', 'phpredis' );  //Redis连接方式

// automatically delete cache keys after 7 days  //默认删除时间
// define( 'WP_REDIS_MAXTTL', 60 * 60 * 24 * 7 );

// bypass the object cache, useful for debugging  //关闭Redis缓存
// define( 'WP_REDIS_DISABLED', true );
赞(1) 赞赏博主
未经允许不得转载:牧野狂歌 » wordpress Redis 使用记录,让你的wordpress直接起飞

相关推荐

  • 暂无文章

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用,打赏一下下吧。

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

微信扫一扫打赏