WordPress

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问

将网站搭建国外主机或者服务器上有一个劣势就是网站的速度慢,为了加快网站的打开速度,利用了各种一切可以用上的方法,例如将JS、CSS、图片等静态文件放在七牛云、又拍云、百度云CDN等,使用CDN加速这在一定程度上可以加快网页的打开速度。

其次,就是优化VPS/云主机的响应速度了。同样的机房与线路,采取的服务器优化方式的差异可能会导致网站访问速度的巨大差别。本篇文章就是要分享WordPress+Memcached缓存加速的方法,利用Cachify插件将WordPress页面缓存到Memcached,实现内存终极加速(建议使用大于1GB内存的主机)。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问插图

更多的Wordpress优化加速方法可参考:

  1. WordPress开启Nginx fastcgi_cache缓存加速方法-Nginx配置实战
  2. 使用PageSpeed网页加速服务 Nginx部署ngx_pagespeed模块以及加速效果体验
  3. 如何使用又拍云分布式CDN加速访问图片/一键镜像/动静CDN 图文教程
  4. 超好用的WordPress插件推荐:SEO插件/CDN加速/静态缓存/图片插件/邮件插件/论坛插件

 

一、服务器配置Memcached

Cachify插件:

  1. 下载:https://wordpress.org/plugins/cachify/
  2. 开源:https://github.com/pluginkollektiv/cachify/wiki

Cachify插件支持把静态内容缓存到 WordPress 数据库,硬盘,APC(PHP 缓存)或者 Memcached 中,缓存到数据库最为简单,但是一般建议缓存到Memcached,利用服务器内存存储和读取速度才是最快的。

相关文章:浅谈什么是memcache?以及memcache与memcached的区别

如果你的用的是Oneinstack或者LNMP一键包,或者是宝塔BT面板,直接使用脚本一键安装和配置Memcached,如果是云主机的话则需要手动配置。虚拟主机一般来说不支持Memcached。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问插图1

二、Cachify插件安装启用

到Wordpress后台直接搜索Cachify插件即可安装,启用Cachify插件后界面如下图:

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问

三、调用Cachify缓存加速

3.1 数据库

如果你在Cachify插件中选择了使用数据库Database作为你的页面缓存,无需其它的操作,直接保存后就可以使用了。

3.2 APC缓存

如果你使用APC缓存来调用Cachify,你需要按照下面的要求修改你的.htaccess或者是Nginx配置文件:

  1. 注意:使用以下配置前请将改为小于号
  2. #.htaccess example (Apache):
  3. 《Files index.php>
  4. php_value auto_prepend_file /absolute path to/plugins/cachify/apc/proxy.php
  5. 《/Files>
  6. #Example for nginx instances:
  7. location ~ .php {
  8. include fastcgi_params;
  9. fastcgi_pass 127.0.0.1:9000;
  10. fastcgi_param PHP_VALUE auto_prepend_file=/absolute path to/plugins/cachify/apc/proxy.php;
  11. location ~ /wp-admin/ {
  12. include fastcgi_params;
  13. fastcgi_pass 127.0.0.1:9000;
  14. fastcgi_param PHP_VALUE auto_prepend_file=;
  15. }
  16. }

3.3 硬盘缓存

如果你是想让Cachify将缓存页面放在你的硬盘上,你需要按照下面的要求来修改你的.htaccess或者是Nginx配置文件(如下):

  1. 注意:使用以下配置前请将改为小于号
  2. #A description for only https and sites that are accessible via https and http follows below.
  3. #Extension of the .htaccess (Apache), if the website is only accessible via http: (https://gist.github.com/sergejmueller/2027249#file-htaccess)
  4. #.htaccess extension for websites that can be reached under both http and https: (https://gist.github.com/mcguffin/31f80070d631d56da23cefb4ef1b6649)
  5. # BEGINN CACHIFY
  6. 《IfModule mod_rewrite.c>
  7. # ENGINE ON
  8. RewriteEngine On
  9. # GZIP FILE
  10. 《IfModule mod_mime.c>
  11. RewriteCond %{REQUEST_URI} /$
  12. RewriteCond %{REQUEST_URI} !^/(wp-admin|wp-content/cache)/.*
  13. RewriteCond %{REQUEST_METHOD} !=POST
  14. RewriteCond %{QUERY_STRING} =“”
  15. RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_
  16. RewriteCond %{HTTP:Accept-Encoding} gzip
  17. RewriteCond %{DOCUMENT_ROOT}/path to/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html.gz -f
  18. RewriteRule ^(.*) /path to/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html.gz [L]
  19. AddType text/html .gz
  20. AddEncoding gzip .gz
  21. 《/IfModule>
  22. # HTML FILE
  23. RewriteCond %{REQUEST_URI} /$
  24. RewriteCond %{REQUEST_URI} !^/(wp-admin|wp-content/cache)/.*
  25. RewriteCond %{REQUEST_METHOD} !=POST
  26. RewriteCond %{QUERY_STRING} =“”
  27. RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_
  28. RewriteCond %{DOCUMENT_ROOT}/path to/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html -f
  29. RewriteRule ^(.*) /path to/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html [L]
  30. 《/IfModule>
  31. # END CACHIFY
  32. #Nginx configuration file extension (https://gist.github.com/sergejmueller/1939164#file-gistfile1-nginxconf)
  33. ## GZIP
  34. gzip_static on;
  35. ## CHARSET
  36. charset utf-8;
  37. ## INDEX LOCATION
  38. location / {
  39. if ( $query_string ) {
  40. return 405;
  41. }
  42. if ( $request_method = POST ) {
  43. return 405;
  44. }
  45. if ( $request_uri ~ /wp-admin/ ) {
  46. return 405;
  47. }
  48. if ( $http_cookie ~ (wp-postpass|wordpress_logged_in|comment_author)_ ) {
  49. return 405;
  50. }
  51. error_page 405 = @nocache;
  52. try_files /wp-content/cache/cachify/https-${host}${uri}index.html /wp-content/cache/cachify/${host}${uri}index.html @nocache;
  53. }
  54. ## NOCACHE LOCATION
  55. location @nocache {
  56. try_files $uri $uri/ /index.php?$args;
  57. }
  58. ## PROTECT CACHE
  59. location ~ /wp-content/cache {
  60. internal;
  61. }

3.4 Memcached

如果你是想要使用Memcached来缓存你的页面,你需要按照下面的要求修改你的Nginx配置文件:(该模式仅支持Nginx)

  1. #Extension of the Nginx configuration file (https://gist.github.com/sergejmueller/6113816#file-gistfile1-txt)
  2. #If you have errors please try to change memcached_pass localhost:11211; to memcached_pass 127.0.0.1:11211; This forces IPv4 because some servers that allow ipv4 and ipv6 are configured to bind memcached to ipv4 only.
  3. ## GZIP
  4. gzip_static on;
  5. ## CHARSET
  6. charset utf-8;
  7. ## INDEX LOCATION
  8. location / {
  9. error_page 404 405 = @nocache;
  10. if ( $query_string ) {
  11. return 405;
  12. }
  13. if ( $request_method = POST ) {
  14. return 405;
  15. }
  16. if ( $request_uri ~ “/wp-“ ) {
  17. return 405;
  18. }
  19. if ( $http_cookie ~ (wp-postpass|wordpress_logged_in|comment_author)_ ) {
  20. return 405;
  21. }
  22. default_type text/html;
  23. add_header X-Powered-By Cachify;
  24. set $memcached_key $host$uri;
  25. memcached_pass localhost:11211;
  26. }
  27. location @nocache {
  28. try_files $uri $uri/ /index.php?$args;
  29. }

该配置规则仅仅是官方给出的示例,你需要根据你自己的Nginx配置情况来适当调整,这里给出正在用的Nginx配置规则,仅供参考(Oneinstack架构):

  1. #因oneinstack加载了Wordpress重写规则,故直接在wordpress.conf中修改
  2. location / {
  3. #注释掉原有的重写规则
  4. #try_files $uri $uri/ /index.php?$args;
  5. #启用Cachify开始
  6. error_page 404 405 = @nocache;
  7. if ( $query_string ) {
  8. return 405;
  9. }
  10. if ( $request_method = POST ) {
  11. return 405;
  12. }
  13. if ( $request_uri ~ “/wp-“ ) {
  14. return 405;
  15. }
  16. if ( $http_cookie ~ (wp-postpass|wordpress_logged_in|comment_author)_ ) {
  17. return 405;
  18. }
  19. default_type text/html;
  20. add_header X-Powered-By Cachify;
  21. set $memcached_key $host$uri;
  22. memcached_pass 127.0.0.1:11211;
  23. #启用Cachify结束
  24. }
  25. #启用Cachify开始
  26. location @nocache {
  27. try_files $uri $uri/ /index.php?$args;
  28. }
  29. #启用Cachify结束
  30. #以下为原配置规则,继续保留
  31. rewrite /wp-admin$ $scheme://$host$uri/ permanent;
  32. location ~* ^/wp-content/uploads/.*\.php$ {
  33. deny all;
  34. }

我们还可以指定不缓存页面,例如我们可以增加对所有的移动设备用户不启用缓存,这个功能在全站使用了AMP时特别有用,规则如下:

  1. #启用Cachify开始
  2. charset utf-8;
  3. #启用Cachify结束
  4. location / {
  5. #try_files $uri $uri/ /index.php?$args;
  6. #启用Cachify开始
  7. error_page 404 405 = @nocache;
  8. if ( $query_string ) {
  9. return 405;
  10. }
  11. if ( $request_method = POST ) {
  12. return 405;
  13. }
  14. #移动端不缓存
  15. if ( $http_user_agent ~ “(MIDP)|(WAP)|(UP.Browser)|(Smartphone)|(Obigo)|(Mobile)|(AU.Browser)|(wxd.Mms)|(WxdB.Browser)|(CLDC)|(UP.Link)|(KM.Browser)|(UCWEB)|(SEMC-Browser)|(Mini)|(Symbian)|(Palm)|(Nokia)|(Panasonic)|(MOT-)|(SonyEricsson)|(NEC-)|(Alcatel)|(Ericsson)|(BENQ)|(BenQ)|(Amoisonic)|(Amoi-)|(Capitel)|(PHILIPS)|(SAMSUNG)|(Lenovo)|(Mitsu)|(Motorola)|(SHARP)|(WAPPER)|(LG-)|(LG/)|(EG900)|(CECT)|(Compal)|(kejian)|(Bird)|(BIRD)|(G900/V1.0)|(Arima)|(CTL)|(TDG)|(Daxian)|(DAXIAN)|(DBTEL)|(Eastcom)|(EASTCOM)|(PANTECH)|(Dopod)|(Haier)|(HAIER)|(KONKA)|(KEJIAN)|(LENOVO)|(Soutec)|(SOUTEC)|(SAGEM)|(SEC-)|(SED-)|(EMOL-)|(INNO55)|(ZTE)|(iPhone)|(Android)|(Windows CE)|(Wget)|(Java)|(curl)|(Opera)” )
  16. {
  17. return 405;
  18. }
  19. #移动端不缓存
  20. if ( $request_uri ~ “/wp-“ ) {
  21. return 405;
  22. }
  23. if ( $http_cookie ~ (wp-postpass|wordpress_logged_in|comment_author)_ ) {
  24. return 405;
  25. }
  26. default_type text/html;
  27. add_header X-Powered-By Cachify;
  28. set $memcached_key $host$uri;
  29. memcached_pass 127.0.0.1:11211;
  30. #启用Cachify结束
  31. }
  32. #启用Cachify开始
  33. location @nocache {
  34. try_files $uri $uri/ /index.php?$args;
  35. }
  36. #启用Cachify结束
  37. rewrite /wp-admin$ $scheme://$host$uri/ permanent;
  38. location ~* ^/wp-content/uploads/.*\.php$ {
  39. deny all;
  40. }

四、Memcached缓存管理

4.1 更新缓存

Cachify插件允许你在更新一篇文章是清空所有的Memcached缓存,还是仅清空某页面的Memcached缓存。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问插图3

4.2 手动删除

在Wordpress后台右上角可以手动一键删除Memcached缓存。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问插图4

4.3 查看缓存

在Wordpress后台可以直接查看和更新Cachify插件缓存配置。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问

五、Cachify缓存加速效果

5.1 确认缓存生效

打开网页源代码,可以看到:<!-- Cachify | http://cachify.de Memcached @ 31.08.2019 01:22:51 -->等字样,表示该页面是由Cachify缓存生成的。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问

查看Response Headers,可以看到:x-powered-by: Cachify的字样,表示该页面是由Cachify缓存生成的。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问

5.2 加速效果明显

以首页作为测试,启用了Cachify Memcached缓存加速后,浏览器的TTFB时间大大缩短,这是未启用Cachify Memcached缓存加速时的TTFB时间,大约需要700ms以上。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问插图8

这是启用了Cachify Memcached缓存加速时的TTFB时间,大约在190ms,与未启用Cachify Memcached缓存加速相比,时间缩短了一倍以上。

使用WordPress的Cachify插件将页面缓存到Memcached实现网站加速访问插图9

六、总结

为了达到Cachify插件最大化的Wordpress优化加速效果,建议使用Memcached缓存加速方式,它相对于使用数据库或者硬盘,直接在内存中写入和读取缓存,速度快了不少。

使用Cachify Memcached缓存加速最大的问题就是配置Nginx规则,你需要根据实际配置情况来调整。另外,Cachify插件支持忽略某个页面的缓存,有一些动态页面就非常有用了。

(END)

文章出自:挖站否 https://wzfou.com/cachify-memcached/,版权所有。