PHP透过文件存储来实现缓存
时间:2021-07-01 10:21:17
帮助过:9人阅读
PHP通过文件存储来实现缓存
PHP通过文件存储来实现缓存
在一些数据库数据记录较大,但是服务器有限的时候,可能一条MySQL查询就会好几百毫秒,一个简单的页面一般也有十几条查询,这个时候也个页面加载下来基本要好几秒了,如果并发量高的话服务器基本就瘫痪了,造成一个页面很久也加载不下来,这个时候我们可以使用文件缓存来缓解下MySQL的压力,下面给个使用例子。
[php] view plaincopy
-
-
- $objPage = new Page_IndexModel($arrParams);
-
-
- $arrResult = $objPage->process();
-
-
- $smarty->assign($arrResult);
-
-
- $smarty->display();
-
- ?>
现在我们用文件缓存来略过Page业务处理这一步
[php] view plaincopy
-
- $cachFile = './index.php';
-
- if(file_exists($cacheFile) && time()-filemtime($cachFile) < 3600) {
-
- $arrResult = include($cachFile);
- } else {
- $objPage = new Page_IndexModel($arrParams);
- $arrResult = $objPage->process();
- $strContent = ".var_export($arrResult, true)."\n;";
-
-
- file_put_contents($cachFile, $strContent);
- }
-
-
- $smarty->assign($arrResult);
-
-
- $smarty->display();
参考来源:
PHP通过文件存储来实现缓存
http://www.lai18.com/content/407149.html