我如何对我的 PHP/MYSQL 新闻网站进行基准测试/分析,以便稍后可以将其与 django/postgres 重新编码的版本进行比较?
我正在寻找某种类型的分析实用程序,我可以使用它来比较两种不同的设置与某种一致性因素。如果有人能指出我正确的方向,我将不胜感激。
I'm looking for some type of profiling utility I could use where I can compare between 2 different setups with some sort of consistency factor. Would appreciate if anyone could point me in the right direction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设 Apache - http://httpd.apache.org/docs/2.0/programs /ab.html
Assuming Apache - http://httpd.apache.org/docs/2.0/programs/ab.html
尝试围攻:
为了分析应用程序本身,您需要一个针对各自语言的分析器,例如 PHP 中的 XDebug 或 ZendDebugger(不知道 python 有什么)。
Try Siege:
For profiling the applications themselves, you'd need a profiler for their respective languages, e.g. XDebug or ZendDebugger in PHP (don't know what's there for python).