太阳不下山 发表于 2021-6-25 10:10:48

wordpress博客安装redis缓存

  Redis是一个开源、支持网络、基于内存的key-value存储系统,类似memcached,性能极高,支持超过100K+ 每秒的读写频率,一些大型的网站例如ITeye(JavaEye)和CSDN现在都用到了Redis。与memcached相比,Redis提供了持久化存储,重启了服务器后memcached需要重新创建缓存,而Redis依赖快照进行持久化,即使服务器刚开机启动也不会导致负载陡增。Redis缓存比较适合大流量的Wordpress。当你的WordPress中的文章达到上万篇,随着流量的增加,Wordpress的服务器压力也随之不断加大,Wordpress发布文章和后台相关的操作都会变得缓慢,这时如果单从硬件上投入来提高Wordpress性能显然不划算。利用Redis将WordPress页面直接缓存在服务器的内存中,这样在避免了PHP重复执行操作的同时,内存的极速响应能够最大限度地提升Wordpress页面的访问速度,部落实际测试发现页面执行时间可以降低到0.00X秒级别,比没有使用Redis缓存提升几倍甚至十几倍以上。
环境说明:centos6.6 LNMP环境redis官网下载源码:http://redis.io/download# wget http://download.redis.io/releases/redis-3.0.2.tar.gz
# tar zxvf redis-3.0.2.tar.gz
# cd redis-3.0.2
# make #redis的安装非常简单,已经有现成的Makefile文件,直接运行make命令即可
安装完成后在src目录下,会生成几个可执行文件:redis-benchmark,redis-check-aof,redis-check- dump,redis-cli,redis-sentinel,redis-server。这几个文件,加上一个redis.conf就构成了整个redis的最终可用包。
下面你可以把这几个可执行文件和redis.conf文件复制到你所希望的地方,比如/usr/local/redis/bin 和/usr/local/redis/etc 下面的,命令如下:# cd redis-3.0.2
# mkdir -p /usr/local/redis/{bin,var,etc}
# cd src/
# cp redis-benchmark redis-check-aof redis-check-dump redis-cli redis-sentinel redis-server /usr/local/redis/bin/
# cp /usr/local/src/redis-3.0.2/redis.conf /usr/local/redis/etc
# ln -s /usr/local/redis/bin/ /usr/bin/修改redis.conf配置文件:# sed -i 's#pidfile.$#pidfile /var/run/redis.pid#' /usr/local/redis/etc/redis.conf
# sed -i 's#logfile.*$#logfile /usr/local/redis/var/redis.log#' /usr/local/redis/etc/redis.conf
# sed -i 's#^dir.*$#dir /usr/local/redis/var#' /usr/local/redis/etc/redis.conf
# sed -i 's#daemonize no#daemonize yes#' /usr/local/redis/etc/redis.conf注意,默认复制过去的redis.conf文件的daemonize参数为no,所以redis不会在后台运行,这时要测试,我们需要重新开一个终端。修改为yes则为后台运行redis。另外配置文件中规定了pid文件,log文件和数据文件的地址,如果有需要先修改,默认log信息定向到标准输出。
# echo 'vm.overcommit_memory = 1'>> /etc/sysctl.conf
# sysctl -p配置开机启动redis-server# wget https://raw.githubusercontent.com/lj2007331/lnmp/master/init/Redis-server-init-CentOS
# mv Redis-server-init-CentOS /etc/init.d/redis-server
# chmod +x /etc/init.d/redis-server
# chkconfig --add redis-server
# chkconfig redis-server on启动redis# service redis-server start
测试:# /usr/local/redis/bin/redis-cli
127.0.0.1:6379> set 123 baby
OK
127.0.0.1:6379> get 123
"baby"
127.0.0.1:6379> exit关闭redis# service redis-server stop安装redis php客户端# wget http://pecl.php.net/get/redis-2.2.3.tgz
# tar zxf redis-2.2.3.tgz
# cd redis-2.2.3
执行phpize命令,生成configure可执行文件
# /usr/local/php-fpm/bin/phpize
# ./configure --with-php-config=/usr/local/php-fpm/bin/php-config
# make && make installphp.ini配置文件,添加extension# sed -i '/; extension_dir = "ext"/a\extension = "redis.so"' /usr/local/php-fpm/etc/php.ini
# service php-fpm restart
使wordpress支持redis你需要一个客户端开发包以便PHP可以连接到redis服务端 ,这里我们推荐predis. 加入WordPress的根目录,执行下面# wget http://uploads.staticjw.com/ji/jim/predis.php
# chown php-fpm:php-fpm predis.php前端缓存的PHP脚本,加入WordPress的根目录,执行下面
# wget https://gist.githubusercontent.com/JimWestergren/3053250/raw/d9e279e31cbee4a1520f59108a4418ae396b2dde/index-with-redis.php
# chown php-fpm:php-fpm index-with-redis.php
# mv predis.php index-with-redis.php /data/www/blog根据自己需求修改index-with-redis.php,修改如下:$cf = 0;                        // set to 1 if you are using cloudflare
$debug = 1;                     // set to 1 if you wish to see execution time and cache actions
$display_powered_by_redis = 0;// set to 1 if you want to display a powered by redis message with execution time, see below如果你正在使用cloudflare,请设置cf = 1; ,如果你想在页面上看到脚本执行时间和缓存加载时间,请设置$debug = 1; 浏览器最下方会显示this is cache:display_powered_by_redis = 1表示显示powered_by信息。如下图右下角图标:替换index.php# mv index.php index.php.bak
# mv index-with-redis.php index.php缓存问题index-with-redis.php中有注释    - appending a ?c=y to a url deletes the entire cache of the domain, only works when you are logged in

appending a ?r=y to a url deletes the cache of that url
submitting a comment deletes the cache of that page
refreshing (f5) a page deletes the cache of that page登录后台网站url后面加上?c=y即可刷新整个网站 可以在网站页面后面加上?r=y即可手工刷新提交评论会自动刷新页面刷新(f5)页面也可以刷新页面刷新网页查看缓存效果,查看源代码360浏览器页面最下角会显示类似:this is a cache: 0.04534F5刷新页面缓存时间会变化
注意事项1、注意,Wordpress Redis缓存PHP版本在5.3以上2、Wordpress Redis缓存加速效果无疑是明显的,特别页面多访问大的网站博客,在使用Wordpress Redis缓存加速时请禁止其它的所有缓存插件,以免造成不必要的冲突。

页: [1]
查看完整版本: wordpress博客安装redis缓存