如何比较和分析在我的本地计算机上运行的三台服务器的性能?
我想比较和分析在我的本地 Linux 机器(Fedora)上运行的三个服务器(即 Cherokee、lighttpd 和 nginx)的性能。
我该如何为此编写脚本?还请建议可用于执行此类分析的工具,这些工具可以提供可靠的结果。
I want to compare and analyse the performance of three servers namely Cherokee, lighttpd and nginx running on my local linux machine (Fedora).
How do I write a script for this? Kindly also suggest tools available for performing such analysis, which gives reliable results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有人用 Cherokee、Lighttpd、nginx 和其他 Web 服务器做到了这一点,通过在 ApacheBench 周围编写一个包装器来输出合适的 CSV 文件或图表:
/dsec.com/source/ab.c.txt
ab.c 程序可以运行与他们的程序:
(在 Linux 下)
gwan -r ab.c
对于 Windows,可以看到结果:
/dsec.com/en_windows.html
和 Linux:
/dsec.com/en_linux.html
以及 Java、PHP 和 .Net:
/dsec.com /
重新使用他们的东西应该会让你做很多工作。
Someone did it here, with Cherokee, Lighttpd, nginx and other web servers, by writting a wrapper around ApacheBench which outputs CSV files suitable or Charting:
/dsec.com/source/ab.c.txt
The ab.c program can be run with their program:
(under Linux)
gwan -r ab.c
The results can be seen there for Windows:
/dsec.com/en_windows.html
And Linux:
/dsec.com/en_linux.html
And Java, PHP and .Net:
/dsec.com/
It should sae you a lot of work to re-use their stuff.