如何对 CakePHP1.3 进行性能分析
我的蛋糕应用程序非常重。
所以我想研究一下原因。
您能建议如何获取一些绩效报告吗?
My Cake app is very heavy.
so I'd like to research for reason why.
Could you recommend how to take some performance report?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
让它运行起来。然后使用 Ctrl-C 或其他方式手动暂停或中断它,并显示调用堆栈。
由于它非常慢,您不会发现它做缓慢事情的可能性非常小。
这是一个示例。(它是用 python 编写的,但是同样的想法。)
Get it running. Then pause or interrupt it manually with Ctrl-C or whatever, and display the call stack.
Since it's so slow, the chance that you won't catch it doing the slow thing is very small.
Here's an example. (It's in python, but same idea.)
你可以检查 debuggable.com/ posts/spotting-performance-leaks-in-your-application:480f4dd5-8a74-4390-b17f-445ccbdd56cb。是的,它已经过时了,但给了您一些如何收集性能报告的提示。
或者尝试使用 xdebug.org
you could check debuggable.com/posts/spotting-performance-leaks-in-your-application:480f4dd5-8a74-4390-b17f-445ccbdd56cb. Yes it is outdated but gives you some hints how to collect performance report.
Or try to use xdebug.org