APC常量定义与PHP的define比较
来源:振中的技术记事本 责任编辑:admin 发表时间:2013-07-02 04:02 点击:次
最近在做云平台的初步代码架构时,遇到一个常量定义速度比较的问题,故做一下比较。
PHP的APC扩展,在PHP手册里面有下面一段描述:
http://cn.php.net/manual/zh/function.apc-define-constants.php
define() is notoriously slow. Since the main benefit of APC is to increase the performance of scripts/applications, this mechanism is provided to streamline the process of mass constant definition. |
意思是PHP的define函数比较慢,在开启了apc的PHP环境中,使用apc的常量定义方式比define要快很多。
apc常量定义使用的是apc_define_constants()和apc_load_constants() 这对函数。
这里准备了两段程序,分别测试其运行时间来看其分别:
define函数的代码:
- <?php
- $stime=microtime(true);
- define('TMP_PATH', '/tmp');
- // ...其他定义,共20个
- echo API_MAIL;
- echo '<br />';
- $etime=microtime(true);
- echo $etime-$stime;
- ?>
apc的常量定义代码:
- <?php
- $stime=microtime(true);
- if(!apc_load_constants('API')){
- apc_define_constants('API', array(
- 'TMP_PATH' => '/tmp',
- // ...其他定义,共20个
- ));
- }
- echo API_MAIL;
- echo '<br />';
- $etime=microtime(true);
- echo $etime-$stime;
- ?>
执行结果:
define函数:
0.000098943710327148
0.00010895729064941
0.00010585784912109
0.00010395050048828
...
apc常量定义:
0.00010991096496582
0.000039100646972656
0.000042915344238281
0.000041961669921875
...
从结果可以看出,apc常量定义在第一次执行时,花的
相关新闻>>
- 发表评论
-
- 最新评论 进入详细评论页>>