使用xhprof在开发环境中测试php性能
include
XHProf是一个分层PHP性能分析工具。它报告函数级别的请求次数和各种指标,包括阻塞时间,CPU时间和内存使用情况。现在我们来聊聊XHProf在开发环境中如何测试php性能。
以百分之一的概率产生测试数据,尽量不影响正式环境效率。
class XHProf { // private $XHProfPath = 'xhprof/'; private $XHProfPath = '/usr/local/apache/htdocs/xhprof/'; private $applicationName = 'sias_application'; private $sampleSize = 100; private static $enabled = false; public function XHProf_Start() { if (mt_rand(1, $this->sampleSize) == 1) { include_once $this->XHProfPath . 'xhprof_lib/utils/xhprof_lib.php'; include_once $this->XHProfPath . 'xhprof_lib/utils/xhprof_runs.php'; xhprof_enable(XHPROF_FLAGS_NO_BUILTINS + XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); self::$enabled = true; } } public function XHProf_End() { if (self::$enabled) { $XHProfData = xhprof_disable(); $XHProfRuns = new XHProfRuns_Default(); $XHProfRuns->save_run($XHProfData, $this->applicationName); } } }
Nach dem Login kopieren
测试效果:
Overall Summary Total Incl. Wall Time (microsec): 48,162 microsecs Total Incl. CPU (microsecs): 32,994 microsecs Total Incl. MemUse (bytes): 2,773,464 bytes Total Incl. PeakMemUse (bytes): 2,867,664 bytes Number of Function Calls: 749
Nach dem Login kopieren
从以下测试结果看出,耗时最多的居然是连接数据库,所以我们来尽量优化数据库。
本文地址:
转载随意,但请附上文章地址:-)
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn

Heiße KI -Werkzeuge

Undresser.AI Undress
KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover
Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool
Ausziehbilder kostenlos

Clothoff.io
KI-Kleiderentferner

AI Hentai Generator
Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel
R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
2 Wochen vor
By 尊渡假赌尊渡假赌尊渡假赌
Wie lange dauert es, um Split Fiction zu schlagen?
1 Monate vor
By DDD
R.E.P.O. Dateispeicherspeicherort: Wo ist es und wie schützt sie?
1 Monate vor
By DDD
R.E.P.O. Beste grafische Einstellungen
2 Wochen vor
By 尊渡假赌尊渡假赌尊渡假赌
Assassin's Creed Shadows: Seashell Riddle -Lösung
1 Wochen vor
By DDD

Heiße Werkzeuge

Notepad++7.3.1
Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version
Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1
Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6
Visuelle Webentwicklungstools

SublimeText3 Mac-Version
Codebearbeitungssoftware auf Gottesniveau (SublimeText3)
