TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

PHP Quick Profiler

68 点作者 unfoldedorigami大约 16 年前

7 条评论

pinkbike大约 16 年前
Very pretty interface and good features. We have our own debugger/profiler with a similar feature set (not as pretty though) that is integrated into our frame work. One of the MOST important features that we integrated into our profiler was the ability to log/save the profiler data when a page generates slowly. Basically, store your profile output and all client info to a database when a page generated slower than some time setting. You'll be surprised at all the slow pages. A page may generate fast when you are testing but under real load you'll uncover a slew of information that will help you fix/improve your application. Under a heavily loaded site under real usage you'll see which queries are locking and are interdependent on others. You'll also run into the issue of slow clients where you'll see slow page generation on larger pages which is attributed to apache flow controlling php. Adding this facility into a tool like this should be easy, and it will yield a lot of useful additional data.<p>Nice work.
plusbryan大约 16 年前
And to think I just implemented x-debug yesterday. PQP blows its socks off. Good work guys!
rmaccloy大约 16 年前
I wrote a thing like this (less pretty, but same information + cache stats) in PHP ages ago when I still did web frontend work, based on some ColdFusion thing someone demoed to me.<p>Total hack, but our site's response times went down a few hundred percent after I enabled it for developers.
zacharydanger大约 16 年前
See also: xdebug + kcachegrind for a solution you don't have to alter your code to implement.
评论 #576592 未加载
gsmaverick大约 16 年前
Awesome. I've been looking for something like this for a while!
aita大约 16 年前
I dont' understand why they are using smarty?
jonursenbach大约 16 年前
This thing is gorgeous.