有谁知道最好的轻量级 Rails 基准测试工具?
我需要获取网络服务器的性能统计数据并模拟每个会话的身份验证 + 页面导航。我一直在尝试使用 httperf,但在应用程序中遇到 TamperingWithCookie 异常。
理想情况下,我想将应用程序和数据库与网络服务器基准测试分开,但有兴趣查看这些组合的结果。
有谁知道最好的轻量级 Rails 基准测试工具?
我需要获取网络服务器的性能统计数据并模拟每个会话的身份验证 + 页面导航。我一直在尝试使用 httperf,但在应用程序中遇到 TamperingWithCookie 异常。
理想情况下,我想将应用程序和数据库与网络服务器基准测试分开,但有兴趣查看这些组合的结果。
ruby-prof 可以很好地工作,您可以通过浏览器手动点击您的应用程序,或者它可以针对测试进行基准测试。
这是一篇关于如何使用它的精彩文章:http: //cfis.savagexi.com/2007/07/18/making-rails-go-vroom
It's not the best way, but using a web stress tool like MS WAS has worked in the past to show simple benchmarks.
ab
is an Apache tool for benchmarking. Probably won't take care of authentication for you but is dead-simple to use:
ab -n 300 -c 20 http://website.com