使用 eAccelerator加速PHP代码的目的

时间:2021-05-26

使用eAccelerator加速PHP代码
eAccelerator真是一个好东西(它的前身是truck-mmcache)。
简单来讲它是一套配合PHP(支持PHP5)运作的缓存系统,通过共享内存或磁盘文件方式交换数据。
它被广为使用的是PHP源码“编码”(不太贴切的称为“加密”)和缓存PHP执行的中间码以加速。关于eA的安装使用的文章已经很多而且也很详细了,这次我想推荐的是用它辅助程序设计缓存,它提供了一组API如下:
是一个非常便捷而又稳定的本机缓存实现方式,目前这部分设计似乎只支持于共享内存,所以只能用于Unix-LikeOS了,windows的就没这个福气了。
1.eaccelerator_put($key,$value,$ttl=0)
将$value以$key为键名存进缓存(php4下支持对像类型,看源码好像zend2里不支持了),$ttl是这个缓存的生命周期,单位是秒,省略该参数或指定为0表示不限时,直到服务器重启清空为止。
2.eaccelerator_get($key)
根据$key从缓存中返回相应的eaccelerator_put()存进去的数据,如果这项缓存已经过期或不存在那么返回值是NULL
3.eaccelerator_rm($key)
根据$key移除缓存
4.eaccelerator_gc()
移除清理所有已过期的key
5.eaccelerator_lock($key)
为$key加上锁定操作,以保证多进程多线程操作时数据的同步。需要调用eaccelerator_unlock($key)来释放这个锁或等待程序请求结束时自动释放这个锁。
例如:
<?php
eaccelerator_lock("count");
eaccelerator_put("count",eaccelerator_get("count")+1));
?>
6.eaccelerator_unlock($key)
根据$key释放锁
7.eaccelerator_cache_output($key,$eval_code,$ttl=0)
将$eval_code代码的输出缓存$ttl秒,($ttl参数同eacclerator_put)
ForExample:
<?phpeaccelerator_cache_output('test','echotime();phpinfo();',30);?>
8.eaccelerator_cache_result($key,$eval_code,$ttl=0)
将$eval_code代码的执行结果缓存$ttl秒,($ttl参数同eacclerator_put),类似cache_output
ForExample:
<?phpeaccelerator_cache_result('test','time()."Hello";',30);?>
9.eaccelerator_cache_page($key,$ttl=0)
将当前整页缓存$ttl秒。
ForExample:
<?php
eaccelerator_cache_page($_SERVER['PHP_SELF'].'?GET='.serialize($_GET),30);
echotime();
phpinfo();
?>
10.eaccelerator_rm_page($key)
删除由eaccelerator_cache_page()执行的缓存,参数也是$key
______________________________________________
(作个简单例子看看它的威力,注意在cli模式下可能无效!)
<?php
classtest_cache{
var$pro='hello';
functiontest_cache(){
echo"ObjectCreated!<br>\n";
}
functionfunc(){
echo',theworld!';
}
functionnow($t){
echodate('Y-m-dH:i:s',$t);
}
}
$tt=eaccelerator_get("test_tt");
if(!$tt)
{
$tt=newtest_cache;
eaccelerator_put("test_tt",$tt);
echo"nocached!<br>\n";
}
else{
echo"cached<br>\n";
}
echo$tt->pro;
$tt->func();
$tt->now(time()+86400);
?>
以下是网友的评论:
--------------------------------------------------------------------------------
showsa回复于:2005-12-3119:51:56win也支持!http://www.arnot.info/eaccelerator/
信天翁回复于:2006-01-0417:17:37最新版eAccelerator0.9.4-rc1中有个小bug表现为/var/log/httpd/error_log出现大量[warn](32)Brokenpipe:writepipe_of_death的错误信息解决方法修改debug.c文件-----------------------------------------------/***Closethedebugsystem.*/voidea_debug_shutdown(){fflush(F_fp);//源语句,关闭文件时没有检测文件句柄//fclose(F_fp);//改为if(F_fp!=stderr)fclose(F_fp);F_fp=NULL;}
soichiro回复于:2006-01-1022:01:21eAccelerator/truck-mmcache太恐怖了,我现在有两个负载很高的系统,一个基于Drupal,另一个基于PostNuke,用了eAccelerator后,Drual速度提升100倍,PostNuke提升10倍,PostNuke提升比较少是因为它本身就很快.
wangyih回复于:2006-04-0810:48:11和使用squid比怎么样
showsa回复于:2006-04-0823:23:44怎么去和squid去比啊不一样的东西squid是缓存页面运行结果如果不是实时显示,squid肯定强了但是论坛之类的,squid就不行了,用eaccelerator/memcache可以很大程度上提升效率
Yarco回复于:2006-04-0910:00:43但是据说和encode过的代码有冲突啊...不知道现在的和zend的兼容性如何?

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章