当前位置:首页 > CMS教程 > WordPress > 列表

使用redis让您的wordpress博客加速五倍

发布:smiling 来源: PHP粉丝网  添加日期:2015-03-23 14:38:49 浏览: 评论:0 

一直用wordpress做博客,而且不喜欢备案,所以只能放在海外,但是海外的主机访问速度不给力,使用了xcache和eAccelerator效果不佳,后来使用了redis这个kv缓存服务后,速度明显的提高5-6倍.

1.在vps主机上安装redis

①我用的LNMP包,里面自带了redis,执行 ./redis.sh 就可以自动安装并加入自启动

②单独安装redis-server

# apt-get install redis-server

启动redis-server,并加入自启动项目(具体方法请自行查阅,因为部分linux上的方法是不同的).

2.在wordpress中增加redis-Server的PHP客户端

大家都推荐使用predis.php(下载地址),将predis.php上传到wp的根目录

3.下载wp使用redis的新首页

index-with-redis.php(下载地址),将原来wp中的index.php备份,修改index-with-redis.php为index.php

4.根据个人需求修改index-with-redis.php中的参数

  1. // change vars here 
  2. $cf = 1; // set to 1 if you are using cloudflare 
  3. $debug = 0; // set to 1 if you wish to see execution time and cache actions //开源软件:phpfensi.com 
  4. $display_powered_by_redis = 1; // set to 1 if you want to display a powered by redis message with execution time, see below 

5.上传到wp根目录,刷新网页即可

注意:如果wp升级了,那上述步骤中的两个文件需要重新设置一下,接下来快去升级和加速你的wordpress站点吧,别犹豫了.

Tags: redis wordpress加速

分享到: