失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > 使用XHProf查找PHP性能瓶颈的实例

使用XHProf查找PHP性能瓶颈的实例

时间:2020-10-13 13:50:31

相关推荐

使用XHProf查找PHP性能瓶颈的实例

后端开发|php教程

XHProf,php,瓶颈

后端开发-php教程

性能瓶颈一般指的是开发人员新开发出来的应用程序。

红包秒挂源码,vscode服务器调试,crt远程ubuntu,tomcat没有自动部署,爬虫展方案,php 正则 中英文,秦皇岛seo网络营销联盟,网站访问统计系统源码,metinfo wap模板lzw

例如,

thinkphp网站oa源码下载,ubuntu怎么连接内网,tomcat 环境变量出错,小爬虫吃鸡,大连php培训班费用多少,搜狗神马seolzw

用Java或者C开发出来的部署在应用服务器上用于用户交易请求处理的应用程序。

金融分享系统源码,vscode子项目,ubuntu vnc使用,tomcat首页路径地址,爬虫审计,php 后退刷新,电商推广seo优化,自动采集小说网站php源码,织梦模板图片覆盖没用lzw

例如,

某个开发员开发了一个缴费处理程序,在测试时发现,

这个缴费处理程序在处理用户发过来的并发缴费请求时,只能串行处理,无法并行处理,导致缴费交易的处理响应时间非常长,这时可以认为在应用程序上出现了性能瓶颈。

本文就为大家分享一篇使用XHProf查找PHP性能瓶颈的实例,具有很好的参考价值,希望能帮助到大家。

XHProf是facebook 开发的一个测试php性能的扩展,本文记录了在PHP应用中使用XHProf对PHP进行性能优化,查找性能瓶颈的方法。

A、安装Xhprof扩展

//github上下载/facebook/xhprofunzip xhprof-master.zip cd xhprof-master/extension//usr/local/php/bin/phpize./configure --with-php-config=/usr/local/php/bin/php-config --enable-xhprofmake && make install

B、修改php.ini

[xhprof]extension=xhprof.soxhprof.output_dir=/tmp

配置中xhprof.output_dir指定了生成的profile文件存储的位置,我们将其指定为/tmp。

C、将相关文件移动项目中

//xhprof下载压缩包中的xhprof_html和xhprof_libcp -r xhprof-master/xhprof_html /usr/local/nginx/html/xhprof/cp -r xhprof-master/xhprof_lib /usr/local/nginx/html/xhprof/

配置一个域名,浏览器可以访问到 /xhprof/xhprof_html/index.php

server{ listen 80; server_name ; location / { root /usr/local/nginx/html; index index.html; } location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }

D、安装graphivz

//需要安装graphviz否则查看性能图片时候会报failed to execute cmd: " dot -Tpng". stderr: `sh: dot: command not found yum -y install graphviz

E、编写测试文件

//入口文件的开始位置xhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);业务逻辑...//业务逻辑结束后$xhprof_data = xhprof_disable();include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_lib.php"; include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_runs.php"; $objXhprofRun = new XHProfRuns_Default();//数据会保存在php.ini中xhprof.output_dir设置的目录去中 $run_id = $objXhprofRun->save_run($xhprof_data, "test");

完整代码示例(随机满减红包demo)

<?phpxhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);function show($info){ echo "

"; print_r($info);}//不作数据校验$rules = array( 2=>array(min=>1, max=>10, chance=>30),//金额:分 概率:百分之(默认为100%,不足100%按第一档计算) array(min=>11, max=>25, chance=>60), array(min=>26, max=>50, chance=>10), array(min=>50, max=>80, chance=>0), array(min=>80, max=>100, chance=>0),);$total_money = 10000;//红包总金额$res = array();while($total_money>0){ $index = getLevel($rules); $money = setMoney($rules, $index); if ($money > $total_money)//金额不足 { $money = $total_money; $total_money = 0; } else { $total_money -= $money; } $res[] = ($index+1)."---".$money;}echo show($res);echo $total_money . "

";//1.先确定档次function getLevel($rules){ $level = array(); $chance = 0; foreach($rules as $k=>$v) { if ($v[chance]>0) { $chance += $v[chance]*100;//扩大100倍 $level[$k] = $chance; } } $index = 0; $rand_num = mt_rand(1, 10000); foreach($level as $k=>$v) { if ($rand_num 1 && $money = $money -1;//防止出现免单情况 return $money;}$xhprof_data = xhprof_disable();include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_lib.php"; include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_runs.php"; $objXhprofRun = new XHProfRuns_Default();//数据会保存在php.ini中xhprof.output_dir设置的目录去中 $run_id = $objXhprofRun->save_run($xhprof_data, "test");echo "/xhprof/xhprof_html/index.php?run=$run_id&source=test";//变量$runId是本次请求生成分析结果的id,最后我们输出了一个链接地址,使用改地址就可以看到本次请求的分析结果。

F、查看分析结果

先运行业务代码;

然后浏览器打开 /xhprof/xhprof_html/index.php, 点击最后一次生成xhprof文件

注意到中间的View Full Callgraph链接,通过该链接我们可以看到图形化的分析结果

图中红色的部分为性能比较低,耗时比较长的部分,我们可以根据根据哪些函数被标记为红色对系统的代码进行优化

另外附上, xhprof报告字段含义:

Function Name:方法名称。

Calls:方法被调用的次数。

Calls%:方法调用次数在同级方法总数调用次数中所占的百分比。

Incl.Wall Time(microsec):方法执行花费的时间,包括子方法的执行时间。(单位:微秒)

IWall%:方法执行花费的时间百分比。

Excl. Wall Time(microsec):方法本身执行花费的时间,不包括子方法的执行时间。(单位:微秒)

EWall%:方法本身执行花费的时间百分比。

Incl. CPU(microsecs):方法执行花费的CPU时间,包括子方法的执行时间。(单位:微秒)

ICpu%:方法执行花费的CPU时间百分比。

Excl. CPU(microsec):方法本身执行花费的CPU时间,不包括子方法的执行时间。(单位:微秒)

ECPU%:方法本身执行花费的CPU时间百分比。

Incl.MemUse(bytes):方法执行占用的内存,包括子方法执行占用的内存。(单位:字节)

IMemUse%:方法执行占用的内存百分比。

Excl.MemUse(bytes):方法本身执行占用的内存,不包括子方法执行占用的内存。(单位:字节)

EMemUse%:方法本身执行占用的内存百分比。

Incl.PeakMemUse(bytes):Incl.MemUse峰值。(单位:字节)

IPeakMemUse%:Incl.MemUse峰值百分比。

Excl.PeakMemUse(bytes):Excl.MemUse峰值。单位:(字节)

EPeakMemUse%:Excl.MemUse峰值百分比。

JavaScript 启动性能瓶颈分析与解决方案

利用xdebug分析php程序,找出性能瓶颈

追踪php代码性能瓶颈

如果觉得《使用XHProf查找PHP性能瓶颈的实例》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。