首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

让 WordPress 运用 Redis 缓存来进行加速

2012-11-01 
让 WordPress 使用 Redis 缓存来进行加速原文 http://www.oschina.net/question/12_60107???或者直接下载

让 WordPress 使用 Redis 缓存来进行加速

原文 http://www.oschina.net/question/12_60107

?

?>

?

或者直接下载?index-with-redis.php

步骤2:将上述代码中的 IP 地址替换成你网站的 IP 地址

步骤3:在 .htaccess 中将所有出现 index.php 的地方改为 index-with-redis.php ,如果你使用的是 Nginx 则修改 nginx.conf 中的 index.php 为 index-with-redis.php(并重载 Nginx : killall -s HUP nginx)。

性能测试
  • 没有 Redis 的情况下,平均首页执行 1.614 秒,文章页 0.174 秒(无任何缓存插件)
  • 使用 Redis 的情况下,平均页面执行时间?0.00256 秒

    我已经在我的博客中使用了如上的方法进行加速很长时间了,一切运行良好。

    其他建议

    我的环境是 Nginx + PHP-FPM + APC + Cloudflare + Redis. 安装在一个 nano VPS 中,无缓存插件。

    请确认使用了 gzip 压缩,可加快访问速度。

    访问 wp-admin

    要访问 wp-admin 必须使用 /wp-admin/index.php 代替原来的 /wp-admin/.

    英文原文,OSCHINA原创翻译