使用XHProf查找PHP性能瓶頸

XHProf是facebook 開發的一個測試php性能的擴展,本文記錄了在PHP應用中使用XHProf對PHP進行性能優化,查找性能瓶頸的方法。php

1、安裝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

2、修改php.ini

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

配置中xhprof.output_dir指定了生成的profile文件存儲的位置,咱們將其指定爲/tmp。html

3、將相關文件移動項目中

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.phpnginx

 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     }

4、安裝graphivz

 
 
//須要安裝graphviz不然查看性能圖片時候會報failed to execute cmd: " dot -Tpng". stderr: `sh: dot: command not found '
1 yum -y install graphviz

5、編寫測試文件

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

 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

6、查看分析結果

先運行業務代碼;github

而後瀏覽器打開 http://will.com/xhprof/xhprof_html/index.php, 點擊最後一次生成xhprof文件瀏覽器

注意到中間的View Full Callgraph連接,經過該連接咱們能夠看到圖形化的分析結果性能優化

圖中紅色的部分爲性能比較低,耗時比較長的部分,咱們能夠根據根據哪些函數被標記爲紅色對系統的代碼進行優化ide

 

另外附上, 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峯值百分比。

相關文章
相關標籤/搜索