每次有人进入我的页面list.PHP?id = xxxxx它会重新查询一些
MySQL查询来返回:
$ids = array(..,..,..); // not big array - not longer then 50 number records $thumbs = array(..,..); // not big array - not longer then 50 text records $artdesc = "some text not very long"; // text field
因为我进行查询的数据库是相当大的我想缓存这个结果24小时在也许一个文件,如xxxxx.PHP在/ cache /目录,所以我可以使用include(“xxxxx.PHP”)如果存在的话(或txt文件??或任何其他方式)
因为有非常简单的数据,我相信可以使用几行PHP行,而不需要使用memcached或其他专业对象.
成为我的PHP非常有限可以有人只是放置PHP主线(或代码)这个任务?
我真的会非常感谢!
缓存PHP数组很简单:
原文链接:https://www.f2er.com/php/131993.htmlfile_put_contents($path,'<?PHP return '.var_export($my_array,true).';?>');
然后你可以读出来:
if (file_exists($path)) $my_array = include($path);
您可能还需要look into ADOdb,内部提供缓存.