PHP通过文件存储来实现缓存
PHP通过文件存储来实现缓存
- <?php
- //页面业务逻辑处理,获得结果
- $objPage = new Page_IndexModel($arrParams);
- //一系列的业务逻辑放在了objPage中,调用process方法获得结果集
- $arrResult = $objPage->process();
- //获得结果后smarty赋值
- $smarty->assign($arrResult);
- //输出模板
- $smarty->display();
- ?>
现在我们用文件缓存来略过Page业务处理这一步
- <?php
- $cachFile = ‘./index.php‘;
- //缓存文件存在且时间不超过一小时,则直接使用缓存的结果集,不在进行任何的MySQL查询了
- if(file_exists($cacheFile) && time()-filemtime($cachFile) < 3600) {
- //使用缓存中的结果
- $arrResult = include($cachFile);
- } else {
- $objPage = new Page_IndexModel($arrParams);
- $arrResult = $objPage->process();
- $strContent = "<?php \n return ".var_export($arrResult, true)."\n;";
- //将结果集缓存
- file_put_contents($cachFile, $strContent);
- }
- //获得结果后smarty赋值
- $smarty->assign($arrResult);
- //输出模板
- $smarty->display();
参考来源:
PHP通过文件存储来实现缓存
http://www.lai18.com/content/407149.html
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。