使用XHProf查找PHP性能瓶颈


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

一、安装Xhprof扩展

//github上下载https://github.com/facebook/xhprof
1
unzip xhprof-master.zip 2 cd xhprof-master/extension/ 3 /usr/local/php/bin/phpize 4 ./configure --with-php-config=/usr/local/php/bin/php-config --enable-xhprof 5 make && make install

二、修改php.ini

1 [xhprof]
2 extension=xhprof.so
3 xhprof.output_dir=/tmp

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

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

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

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

 1 server{
 2         listen 80;
 3         server_name will.com;
 4         location / {
 5                 root /usr/local/nginx/html;
 6                 index index.html;
 7         }
 8         location ~ \.php$ {
 9                 root html;
10                 fastcgi_pass    127.0.0.1:9000;
11                 fastcgi_index   index.php;
12                 fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
13                 include         fastcgi_params;
14         }
15     }

四、安装graphivz


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

五、编写测试文件

//入口文件的开始位置
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)

 1 <?php
 2 xhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);
 3 
 4 function show($info)
 5 {
 6     echo "<pre>";
 7     print_r($info);
 8 }
 9 
10 
11 //不作数据校验
12 $rules = array(
13     2=>array('min'=>1, 'max'=>10, 'chance'=>30),//金额:分  概率:百分之(默认为100%,不足100%按第一档计算)
14     array('min'=>11, 'max'=>25, 'chance'=>60),
15     array('min'=>26, 'max'=>50, 'chance'=>10),
16     array('min'=>50, 'max'=>80, 'chance'=>0),
17     array('min'=>80, 'max'=>100, 'chance'=>0),
18 );
19 
20 $total_money = 10000;//红包总金额
21 $res = array();
22 while($total_money>0)
23 {
24     $index = getLevel($rules);
25 
26     $money = setMoney($rules, $index);
27     if ($money > $total_money)//金额不足
28     {
29         $money = $total_money;
30         $total_money = 0;
31     } else {
32         $total_money -= $money;
33     }
34     $res[] = ($index+1)."---".$money;
35 }
36 echo show($res);
37 echo $total_money . "<br/>";
38 
39 //1.先确定档次
40 function getLevel($rules)
41 {
42     $level = array();
43     $chance = 0;
44     foreach($rules as $k=>$v)
45     {
46         if ($v['chance']>0)
47         {
48             $chance += $v['chance']*100;//扩大100倍
49             $level[$k] = $chance;
50         }
51     }
52     $index = 0;
53     $rand_num = mt_rand(1, 10000);
54     foreach($level as $k=>$v)
55     {
56         if ($rand_num <= $v)
57         {
58             $index = $k;
59             break;
60         }
61     }
62     return $index;
63 }
64 
65 //2.确定档次之后,再确定金额
66 function setMoney($rules, $index)
67 {
68     $money = mt_rand($rules[$index]['min']*10000, $rules[$index]['max']*10000)/10000;
69     $money = ceil($money);
70     $money > 1 && $money = $money -1;//防止出现免单情况
71     return $money;
72 }
73 
74 $xhprof_data = xhprof_disable();
75 include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_lib.php";  
76 include_once "/usr/local/nginx/html/xhprof/xhprof_lib/utils/xhprof_runs.php";  
77 $objXhprofRun = new XHProfRuns_Default();//数据会保存在php.ini中xhprof.output_dir设置的目录去中 
78 $run_id = $objXhprofRun->save_run($xhprof_data, "test");
79 
80 echo "http://will.com/xhprof/xhprof_html/index.php?run=$run_id&source=test";//变量$runId是本次请求生成分析结果的id,最后我们输出了一个链接地址,使用改地址就可以看到本次请求的分析结果。
View Code

六、查看分析结果

先运行业务代码;

然后浏览器打开http://will.com/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峰值百分比。

优质内容筛选与推荐>>
1、7段数码管 显示十六进制字符
2、HDU3973 线段树 + 字符哈希
3、hoho,搜集整理了非常全的主流分享到代码
4、Java连接MySQL数据库和Oracle数据库并进行简单的SQL操作的一次尝试
5、PAT001 一元多项式求导


长按二维码向我转账

受苹果公司新规定影响,微信 iOS 版的赞赏功能被关闭,可通过二维码转账支持公众号。

    阅读
    好看
    已推荐到看一看
    你的朋友可以在“发现”-“看一看”看到你认为好看的文章。
    已取消,“好看”想法已同步删除
    已推荐到看一看 和朋友分享想法
    最多200字,当前共 发送

    已发送

    朋友将在看一看看到

    确定
    分享你的想法...
    取消

    分享想法到看一看

    确定
    最多200字,当前共

    发送中

    网络异常,请稍后重试

    微信扫一扫
    关注该公众号





    联系我们

    欢迎来到TinyMind。

    关于TinyMind的内容或商务合作、网站建议,举报不良信息等均可联系我们。

    TinyMind客服邮箱:support@tinymind.net.cn