溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

如何使用XHProf查找PHP性能瓶頸

發(fā)布時(shí)間:2021-07-22 11:25:25 來(lái)源:億速云 閱讀:173 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹如何使用XHProf查找PHP性能瓶頸,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

XHProf是facebook 開(kāi)發(fā)的一個(gè)測(cè)試php性能的擴(kuò)展,本文記錄了在PHP應(yīng)用中使用XHProf對(duì)PHP進(jìn)行性能優(yōu)化,查找性能瓶頸的方法。

一、安裝Xhprof擴(kuò)展

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

二、修改php.ini

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

配置中xhprof.output_dir指定了生成的profile文件存儲(chǔ)的位置,我們將其指定為/tmp。

三、將相關(guān)文件移動(dòng)項(xiàng)目中

//xhprof下載壓縮包中的xhprof_html和xhprof_lib
cp -r xhprof-master/xhprof_html /usr/local/nginx/html/xhprof/
cp -r xhprof-master/xhprof_lib /usr/local/nginx/html/xhprof/

配置一個(gè)域名,瀏覽器可以訪(fǎng)問(wèn)到 http://will.com/xhprof/xhprof_html/index.php

server{
 listen 80;
 server_name will.com;
 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;
 }
 }

四、安裝graphivz

//需要安裝graphviz否則查看性能圖片時(shí)候會(huì)報(bào)failed to execute cmd: " dot -Tpng". stderr: `sh: dot: command not found '
yum -y install graphviz

五、編寫(xiě)測(cè)試文件

//入口文件的開(kāi)始位置
xhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);

業(yè)務(wù)邏輯...

//業(yè)務(wù)邏輯結(jié)束后
$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();//數(shù)據(jù)會(huì)保存在php.ini中xhprof.output_dir設(shè)置的目錄去中 
$run_id = $objXhprofRun->save_run($xhprof_data, "test");

完整代碼示例(隨機(jī)滿(mǎn)減紅包demo)

<?php
xhprof_enable(XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_CPU);
function show($info)
{
 echo "<pre>";
 print_r($info);
}

//不作數(shù)據(jù)校驗(yàn)
$rules = array(
 2=>array('min'=>1, 'max'=>10, 'chance'=>30),//金額:分 概率:百分之(默認(rèn)為100%,不足100%按第一檔計(jì)算)
 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 . "<br/>";
//1.先確定檔次
function getLevel($rules)
{
 $level = array();
 $chance = 0;
 foreach($rules as $k=>$v)
 {
 if ($v['chance']>0)
 {
  $chance += $v['chance']*100;//擴(kuò)大100倍
  $level[$k] = $chance;
 }
 }
 $index = 0;
 $rand_num = mt_rand(1, 10000);
 foreach($level as $k=>$v)
 {
 if ($rand_num <= $v)
 {
  $index = $k;
  break;
 }
 }
 return $index;
}
//2.確定檔次之后,再確定金額
function setMoney($rules, $index)
{
 $money = mt_rand($rules[$index]['min']*10000, $rules[$index]['max']*10000)/10000;
 $money = ceil($money);
 $money > 1 && $money = $money -1;//防止出現(xiàn)免單情況
 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();//數(shù)據(jù)會(huì)保存在php.ini中xhprof.output_dir設(shè)置的目錄去中 
$run_id = $objXhprofRun->save_run($xhprof_data, "test");
echo "http://will.com/xhprof/xhprof_html/index.php?run=$run_id&source=test";//變量$runId是本次請(qǐng)求生成分析結(jié)果的id,最后我們輸出了一個(gè)鏈接地址,使用改地址就可以看到本次請(qǐng)求的分析結(jié)果。

六、查看分析結(jié)果

先運(yùn)行業(yè)務(wù)代碼;

然后瀏覽器打開(kāi) http://will.com/xhprof/xhprof_html/index.php, 點(diǎn)擊最后一次生成xhprof文件

如何使用XHProf查找PHP性能瓶頸

注意到中間的View Full Callgraph鏈接,通過(guò)該鏈接我們可以看到圖形化的分析結(jié)果

如何使用XHProf查找PHP性能瓶頸

圖中紅色的部分為性能比較低,耗時(shí)比較長(zhǎng)的部分,我們可以根據(jù)根據(jù)哪些函數(shù)被標(biāo)記為紅色對(duì)系統(tǒng)的代碼進(jìn)行優(yōu)化

另外附上, xhprof報(bào)告字段含義:

Function Name:方法名稱(chēng)。

Calls:方法被調(diào)用的次數(shù)。

Calls%:方法調(diào)用次數(shù)在同級(jí)方法總數(shù)調(diào)用次數(shù)中所占的百分比。

Incl.Wall Time(microsec):方法執(zhí)行花費(fèi)的時(shí)間,包括子方法的執(zhí)行時(shí)間。(單位:微秒)

IWall%:方法執(zhí)行花費(fèi)的時(shí)間百分比。

Excl. Wall Time(microsec):方法本身執(zhí)行花費(fèi)的時(shí)間,不包括子方法的執(zhí)行時(shí)間。(單位:微秒)

EWall%:方法本身執(zhí)行花費(fèi)的時(shí)間百分比。

Incl. CPU(microsecs):方法執(zhí)行花費(fèi)的CPU時(shí)間,包括子方法的執(zhí)行時(shí)間。(單位:微秒)

ICpu%:方法執(zhí)行花費(fèi)的CPU時(shí)間百分比。

Excl. CPU(microsec):方法本身執(zhí)行花費(fèi)的CPU時(shí)間,不包括子方法的執(zhí)行時(shí)間。(單位:微秒)

ECPU%:方法本身執(zhí)行花費(fèi)的CPU時(shí)間百分比。

Incl.MemUse(bytes):方法執(zhí)行占用的內(nèi)存,包括子方法執(zhí)行占用的內(nèi)存。(單位:字節(jié))

IMemUse%:方法執(zhí)行占用的內(nèi)存百分比。

Excl.MemUse(bytes):方法本身執(zhí)行占用的內(nèi)存,不包括子方法執(zhí)行占用的內(nèi)存。(單位:字節(jié))

EMemUse%:方法本身執(zhí)行占用的內(nèi)存百分比。

Incl.PeakMemUse(bytes):Incl.MemUse峰值。(單位:字節(jié))

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

Excl.PeakMemUse(bytes):Excl.MemUse峰值。單位:(字節(jié))

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

以上是“如何使用XHProf查找PHP性能瓶頸”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI