0

0

安装Redis前端缓存的PHP脚本

php中文网

php中文网

发布时间:2016-07-28 08:27:57

|

1114人浏览过

|

来源于php中文网

原创

1、Redis前端缓存的PHP脚本来自:http://www.shenbogame.com.com/wordpress-with-redis-as-a-frontend-cache/ 
     for setup and configuration see more here:      www.jeedo.net/lightning-fast-wordpress-with-nginx-redis/      use this script at your own risk. i currently use this albeit a slightly modified version     to display a redis badge whenever a cache is displayed.  */  // change vars here $cf = 1;// set to 1 if you are using cloudflare $debug = 0;// set to 1 if you wish to see execution time and cache actions $display_powered_by_redis = 1;  // set to 1 if you want to display a powered by redis message with execution time, see below  $start = microtime();   // start timing page exec  // if cloudflare is enabled if ($cf) {     if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {         $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];     } }  // from wp define('WP_USE_THEMES', true);  // init predis include("predis.php"); $redis = new Predis\Client('');  // init vars $domain = $_SERVER['HTTP_HOST']; $url = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; $url = str_replace('?r=y', '', $url); $url = str_replace('?c=y', '', $url); $dkey = md5($domain); $ukey = md5($url);  // check if page isn't a comment submission (isset($_SERVER['HTTP_CACHE_CONTROL']) && $_SERVER['HTTP_CACHE_CONTROL'] == 'max-age=0') ? $submit = 1 : $submit = 0;  // check if logged in to wp $cookie = var_export($_COOKIE, true); $loggedin = preg_match("/wordpress_logged_in/", $cookie);  // check if a cache of the page exists if ($redis->hexists($dkey, $ukey) && !$loggedin && !$submit && !strpos($url, '/feed/')) {      echo $redis->hget($dkey, $ukey);     $cached = 1;     $msg = 'this is a cache';  // if a comment was submitted or clear page cache request was made delete cache of page } else if ($submit || substr($_SERVER['REQUEST_URI'], -4) == '?r=y') {      require('./wp-blog-header.php');     $redis->hdel($dkey, $ukey);     $msg = 'cache of page deleted';  // delete entire cache, works only if logged in } else if ($loggedin && substr($_SERVER['REQUEST_URI'], -4) == '?c=y') {      require('./wp-blog-header.php');     if ($redis->exists($dkey)) {         $redis->del($dkey);         $msg = 'domain cache flushed';     } else {         $msg = 'no cache to flush';     }  // if logged in don't cache anything } else if ($loggedin) {      require('./wp-blog-header.php');     $msg = 'not cached';  // cache the page } else {      // turn on output buffering     ob_start();      require('./wp-blog-header.php');      // get contents of output buffer     $html = ob_get_contents();      // clean output buffer     ob_end_clean();     echo $html;      // Store to cache only if the page exist and is not a search result.     if (!is_404() && !is_search()) {         // store html contents to redis cache         $redis->hset($dkey, $ukey, $html);         $msg = 'cache is set';     } }  $end = microtime(); // get end execution time  // show messages if debug is enabled if ($debug) {     echo $msg.': ';     echo t_exec($start, $end); }  if ($cached && $display_powered_by_redis) { // You should move this CSS to your CSS file and change the: float:right;margin:20px 0; echo ""; echo "

"; }  // time diff function t_exec($start, $end) {     $t = (getmicrotime($end) - getmicrotime($start));     return round($t,5); }  // get time function getmicrotime($t) {     list($usec, $sec) = explode(" ",$t);     return ((float)$usec + (float)$sec); }  ?>
2、 你也可以直接点击备用下载:index-with-redis.php下载地址。 Github项目:https://gist.github.com/JimWestergren/3053250#file-index-with-redis-php 
3、 如果你正在使用cloudflare,请设置cf = 1; ,如果你想在页面上看到脚本执行时间和缓存加载时间,请设置$debug = 1; display_powered_by_redis = 1表示显示powered_by信息。 
 
4、将index-with-redis.php上传到Wordpress的根目录,如果你使用的是nginx,重命令原来的index.php为任意其它名字,把index-with-redis.php重命名为index.php。 
 
5、如果你使用的是Apache,则需要把.htaccess中出现的index.php替换成index-with-redis.php。 
 
6、所有的操作完成后,你就可以刷新一下Wordpress页面,查看Redis缓存效果了。 
7、实际使用过程中发现以上代码会出现Wordpress首页和分类没有及时缓存,这里再给出优化版本,出自http://www.88shenbogame.com/lightning-fast-wordpress-with-nginx-redis/。 
8、功能差不多,主要有:登录时页面不缓存、除非删除或者重置否则不删除缓存页面、登录时在任意URL后加上?c=y可以删除整个网站缓存、在任意URL后面加上?c=y可以清除此URL缓存、allow_fopen被禁止也可以正常运行、发表评论时删除该页面缓存。 
9、index-with-redis.php优化版本的源码是: 
hexists($dkey, $ukey) && !$loggedin && !$submit) {     echo $redis->hget($dkey, $ukey);     if (!$debug) exit(0);     $msg = 'this is a cache'; // if a comment was submitted or clear page cache request was made delete cache of page } else if ($submit || substr($_SERVER['REQUEST_URI'], -4) == '?r=y') {     require('./wp-blog-header.php');     $redis->hdel($dkey, $ukey);     $msg = 'cache of page deleted'; // delete entire cache, works only if logged in } else if ($loggedin && substr($_SERVER['REQUEST_URI'], -4) == '?c=y') {     require('./wp-blog-header.php');     if ($redis->exists($dkey)) {         $redis->del($dkey);         $msg = 'domain cache flushed';     } else {         $msg = 'no cache to flush';     } // if logged in don't cache anything } else if ($loggedin) {     require('./wp-blog-header.php');     $msg = 'not cached'; // cache the page } else {     // turn on output buffering     ob_start();     require('./wp-blog-header.php');     // get contents of output buffer     $html = ob_get_contents();     // clean output buffer     ob_end_clean();     echo $html;     // store html contents to redis cache     $redis->hset($dkey, $ukey, $html);     $msg = 'cache is set'; } $end = microtime(); // get end execution time // show messages if debug is enabled if ($debug) {     echo $msg.': ';     echo t_exec($start, $end); } // time diff function t_exec($start, $end) {     $t = (getmicrotime($end) - getmicrotime($start));     return round($t,5); } // get time function getmicrotime($t) {     list($usec, $sec) = explode(" ",$t);     return ((float)$usec + (float)$sec); } ?>

以上就介绍了 安装Redis前端缓存的PHP脚本,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关文章

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载

相关标签:

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

相关专题

更多
Java 桌面应用开发(JavaFX 实战)
Java 桌面应用开发(JavaFX 实战)

本专题系统讲解 Java 在桌面应用开发领域的实战应用,重点围绕 JavaFX 框架,涵盖界面布局、控件使用、事件处理、FXML、样式美化(CSS)、多线程与UI响应优化,以及桌面应用的打包与发布。通过完整示例项目,帮助学习者掌握 使用 Java 构建现代化、跨平台桌面应用程序的核心能力。

36

2026.01.14

php与html混编教程大全
php与html混编教程大全

本专题整合了php和html混编相关教程,阅读专题下面的文章了解更多详细内容。

17

2026.01.13

PHP 高性能
PHP 高性能

本专题整合了PHP高性能相关教程大全,阅读专题下面的文章了解更多详细内容。

34

2026.01.13

MySQL数据库报错常见问题及解决方法大全
MySQL数据库报错常见问题及解决方法大全

本专题整合了MySQL数据库报错常见问题及解决方法,阅读专题下面的文章了解更多详细内容。

19

2026.01.13

PHP 文件上传
PHP 文件上传

本专题整合了PHP实现文件上传相关教程,阅读专题下面的文章了解更多详细内容。

16

2026.01.13

PHP缓存策略教程大全
PHP缓存策略教程大全

本专题整合了PHP缓存相关教程,阅读专题下面的文章了解更多详细内容。

6

2026.01.13

jQuery 正则表达式相关教程
jQuery 正则表达式相关教程

本专题整合了jQuery正则表达式相关教程大全,阅读专题下面的文章了解更多详细内容。

3

2026.01.13

交互式图表和动态图表教程汇总
交互式图表和动态图表教程汇总

本专题整合了交互式图表和动态图表的相关内容,阅读专题下面的文章了解更多详细内容。

45

2026.01.13

nginx配置文件详细教程
nginx配置文件详细教程

本专题整合了nginx配置文件相关教程详细汇总,阅读专题下面的文章了解更多详细内容。

5

2026.01.13

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
进程与SOCKET
进程与SOCKET

共6课时 | 0.3万人学习

Redis+MySQL数据库面试教程
Redis+MySQL数据库面试教程

共72课时 | 6.3万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号