时间:2021-05-26
晚上详细的看了下cache_lite,功能比我想象中的强大的多。当然目前我还没有发现它是否支持直接保存PHP代码来缓存的功能,不过我想应该是可以扩展实现的。
这里有几个例子:
<?
require_once('../libs/cache/Lite.php');
$options=array(
'cacheDir'=>'../cache/test/',
'fileLocking'=>true,
'writeControl'=>true,
'readControl'=>false,
'fileNameProtection'=>false,//关闭文件名安全模式。cacheid和组名将直接应用到cache文件的文件名,所以要小心使用特殊字符.
'automaticSerialization'=>false,//关闭自动序列
'hashedDirectoryLevel'=>2,//设置两级缓存路径
'lifeTime'=>60
);
$Cache=newCache_Lite($options);
$id='test';
if($data=$Cache->get($id,'test')){
echo$data;
}else{
$data=time();
$Cache->save($data);
echo$data;
}
?>
对输出进行缓存
<?
require_once('../libs/cache/Lite.php');
require_once('../libs/cache/Lite/output.php');
$options=array(
'cacheDir'=>'../cache/test/',
'lifeTime'=>60,
'pearErrorMode'=>CACHE_LITE_ERROR_DIE
);
$cache=newCache_Lite_Output($options);
if(!($cache->start('id_of_the_page'))){
//没有发现Cache!
echo'testtime:'.time().'<br>test<br>';
$cache->end();//缓冲的输出现在被存储到一个cache文件中
}
?>
对函数进行缓存
<?
require_once('../libs/cache/Lite.php');
require_once('../libs/cache/Lite/Function.php');
$options=array(
'cacheDir'=>'../cache/test/',
'lifeTime'=>3600,
'pearErrorMode'=>CACHE_LITE_ERROR_DIE
);
$cache=newCache_Lite_Function($options);
$cache->call('function_to_bench',12,45);
functionfunction_to_bench($arg1,$arg2)
{
echo"Thisistheoutputofthefunctionfunction_to_bench($arg1,$arg2)!<br>";
return"Thisistheresultofthefunctionfunction_to_bench($arg1,$arg2)!<br>";
}
?>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
今天研究下pear的cache_lite。从http://pear.php.net上下载了最新的cache_lite。cache_lite是pear库类中一个轻
随着10月24日华为A1Lite开售,华为相继推出了三款路由器:华为路由Q1、华为路由A1、华为路由A1Lite,三款产品都继承了简约北欧风外观,那么我们该
在开启smarty缓存的情况下,第一次执行时会将其编译好的输出文件保存到cache目录中,然后在程序中通过smarty的is_cache()函数检测其cache
GalaxyNote10Lite,不少小伙伴都想知道三星GalaxyNote10Lite怎么样?三星Note10Lite值得买吗?下面就给大家整理了详细的内容,
代码如下:$CACHE=cache_read('common.php');if(!$CACHE){require_once'cache.