PHP开启opcache提升代码性能


Posted in PHP onApril 26, 2015

配置指令如下:

[opcache]
zend_extension=opcache.so
opcache.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://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking 112.126.69.14 (be patient)
Completed 1000 requests
Completed 2000 requests
Completed 3000 requests
Completed 4000 requests
Completed 5000 requests
Completed 6000 requests
Completed 7000 requests
Completed 8000 requests
Completed 9000 requests
Completed 10000 requests
Finished 10000 requests

Server Software:    openresty/1.7.2.1
Server Hostname:    112.126.69.14
Server Port:      80

Document Path:     /main.php?a=Role&m=createRole
Document Length:    2 bytes

Concurrency Level:   200
Time taken for tests:  26.061 seconds
Complete requests:   10000
Failed requests:    20
  (Connect: 0, Receive: 0, Length: 20, Exceptions: 0)
Write errors:      0
Non-2xx responses:   20
Total transferred:   1713580 bytes
HTML transferred:    23520 bytes
Requests per second:  383.72 [#/sec] (mean)
Time per request:    521.216 [ms] (mean)
Time per request:    2.606 [ms] (mean, across all concurrent requests)
Transfer rate:     64.21 [Kbytes/sec] received

Connection Times (ms)
       min mean[+/-sd] median  max
Connect:    2  3  3.2   2   60
Processing:  17 461 905.0  219  16496
Waiting:    17 461 904.9  219  16496
Total:     21 464 905.0  222  16502

Percentage of the requests served within a certain time (ms)
 50%  222
 66%  271
 75%  369
 80%  412
 90%  805
 95%  1248
 98%  2597
 99%  3489
 100% 16502 (longest request)

开启之后的数据:

[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://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking 112.126.69.14 (be patient)
Completed 1000 requests
Completed 2000 requests
Completed 3000 requests
Completed 4000 requests
Completed 5000 requests
Completed 6000 requests
Completed 7000 requests
Completed 8000 requests
Completed 9000 requests
Completed 10000 requests
Finished 10000 requests


Server Software:    openresty/1.7.2.1
Server Hostname:    112.126.69.14
Server Port:      80

Document Path:     /main.php?a=Role&m=createRole
Document Length:    2 bytes

Concurrency Level:   200
Time taken for tests:  14.237 seconds
Complete requests:   10000
Failed requests:    0
Write errors:      0
Total transferred:   1711710 bytes
HTML transferred:    20020 bytes
Requests 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] received

Connection Times (ms)
       min mean[+/-sd] median  max
Connect:    2  66 272.6   2  3005
Processing:   4 176 666.4   6  9026
Waiting:    4 163 642.8   6  9026
Total:     6 242 745.7   9  10028

Percentage 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)

以上所述就是本文的全部内容,希望大家能够喜欢。

PHP 相关文章推荐
PHP漏洞全解(详细介绍)
Nov 13 PHP
PHP之短标签开启设置
Jun 17 PHP
解析Linux下Varnish缓存的配置优化
Jun 20 PHP
AJAX的跨域访问-两种有效的解决方法介绍
Jun 22 PHP
CodeIgniter基本配置详细介绍
Nov 12 PHP
PHP小技巧之JS和CSS优化工具Minify的使用方法
May 19 PHP
PHP与MYSQL中UTF8 中文排序示例代码
Oct 23 PHP
php写入数据到CSV文件的方法
Mar 14 PHP
php实现评论回复删除功能
May 23 PHP
thinkphp 抓取网站的内容并且保存到本地的实例详解
Aug 25 PHP
PHP 访问数据库配置通用方法(json)
May 20 PHP
CI框架网页缓存简单用法分析
Dec 26 PHP
php格式化电话号码的方法
Apr 24 #PHP
php生成年月日下载列表的方法
Apr 24 #PHP
PHP传参之传值与传址的区别
Apr 24 #PHP
php获取访问者IP地址汇总
Apr 24 #PHP
php实现的RSS生成类实例
Apr 23 #PHP
php利用事务处理转账问题
Apr 22 #PHP
ThinkPHP文件缓存类代码分享
Apr 22 #PHP
You might like
删除数组元素实用的PHP数组函数
2008/08/18 PHP
php若干单维数组遍历方法的比较
2011/09/20 PHP
PHP5中实现多态的两种方法实例分享
2014/04/21 PHP
php微信浏览器分享设置以及回调详解
2016/08/01 PHP
php基于curl实现的股票信息查询类实例
2016/11/11 PHP
PHP实现防止表单重复提交功能【基于token验证】
2018/05/24 PHP
laravel 获取某个查询的查询SQL语句方法
2019/10/12 PHP
js 数组实现一个类似ruby的迭代器
2009/10/27 Javascript
关于jquery css的使用介绍
2013/04/18 Javascript
javascript 实现 秒杀,团购 倒计时展示的记录 分享
2013/07/12 Javascript
我的NodeJs学习小结(一)
2014/07/06 NodeJs
JS获取iframe中longdesc属性的方法
2015/04/01 Javascript
Java中Timer的用法详解
2015/10/21 Javascript
gameboy网页闯关游戏(riddle webgame)--仿微信聊天的前端页面设计和难点
2016/02/21 Javascript
echarts学习笔记之图表自适应问题详解
2017/11/22 Javascript
JS中利用FileReader实现上传图片前本地预览功能
2018/03/02 Javascript
Vue路由切换时的左滑和右滑效果示例
2018/05/29 Javascript
使用watch在微信小程序中实现全局状态共享
2019/06/03 Javascript
vue 查看dist文件里的结构(多种方式)
2020/01/17 Javascript
python 正则式使用心得
2009/05/07 Python
使用scrapy实现爬网站例子和实现网络爬虫(蜘蛛)的步骤
2014/01/23 Python
让python在hadoop上跑起来
2016/01/27 Python
详解python的argpare和click模块小结
2019/03/31 Python
python初学者,用python实现基本的学生管理系统(python3)代码实例
2019/04/10 Python
Python中psutil的介绍与用法
2019/05/02 Python
django echarts饼图数据动态加载的实例
2019/08/12 Python
pytorch方法测试详解——归一化(BatchNorm2d)
2020/01/15 Python
python生成任意频率正弦波方式
2020/02/25 Python
matplotlib 使用 plt.savefig() 输出图片去除旁边的空白区域
2021/01/05 Python
详解HTML5中的标签
2015/06/19 HTML / CSS
HTML5 拖拽批量上传文件的示例代码
2018/03/28 HTML / CSS
在印度上传处方,在线订购药品:Medlife
2019/03/28 全球购物
应届生法律求职信
2013/10/22 职场文书
初中英语教学反思
2014/01/25 职场文书
保险专业求职信
2014/07/07 职场文书
群众路线个人对照检查材料
2014/09/23 职场文书