时间:2021-05-26
配置指令如下:
[opcache]zend_extension=opcache.soopcache.enable_cli=1;共享内存大小, 这个根据你们的需求可调opcache.memory_consumption=256 ;interned string的内存大小, 也可调opcache.interned_strings_buffer=8;最大缓存的文件数目opcache.max_accelerated_files=4000;60s检查一次文件更新opcache.revalidate_freq=60;打开快速关闭, 打开这个在PHP Request Shutdown的时候 会收内存的速度会提高opcache.fast_shutdown=1;不保存文件/函数的注释opcache.save_comments=0实际性能对比:
下面是实际测试中没有开启opcache的数据:
[root@localhost ~]# ab -n 10000 -c 200 "http://112.126.69.14/main.php?a=Role&m=createRole"This is ApacheBench, Version 2.3 <$Revision: 655654 $>Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://plete requests: 10000Failed requests: 0Write errors: 0Total transferred: 1711710 bytesHTML transferred: 20020 bytesRequests per second: 702.40 [#/sec] (mean)Time per request: 284.739 [ms] (mean)Time per request: 1.424 [ms] (mean, across all concurrent requests)Transfer rate: 117.41 [Kbytes/sec] receivedConnection Times (ms) min mean[+/-sd] median maxConnect: 2 66 272.6 2 3005Processing: 4 176 666.4 6 9026Waiting: 4 163 642.8 6 9026Total: 6 242 745.7 9 10028Percentage of the requests served within a certain time (ms) 50% 9 66% 14 75% 99 80% 122 90% 1006 95% 1476 98% 2853 99% 3543 100% 10028 (longest request)以上所述就是本文的全部内容,希望大家能够喜欢。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了PHP的Opcache加速的使用方法,具体如下,分享给大家:介绍PHP5.5+版本以上的,可以使用PHP自带的opcache开启性能加速(默认是关闭的
说明PHP5.5+版本以上的,可以使用PHP自带的opcache开启性能加速(默认是关闭的)。对于PHP5.5以下版本的,需要使用APC加速,这里不说明,可以自
本文针对PHP5.5等高级版本,编译时需要加上--enable-opcache参数编译安装完成后,我们开始配置Opcache复制代码代码如下:[Opcache]
简介Opcache的前生是Optimizer+,它是Zend开发的PHP优化加速组件。Optimizer+将PHP代码预编译生成的脚本文件Opcode缓存在共享
问题背景通过启用Opcache的缓存优化,将PHP代码预编译为Opcode缓存到共享内存中供进程反复调用,从而减少了重复从磁盘解析PHP代码的时间消耗,显著的提