如何准确地衡量加载模型所需的时间?
我想对加载模块(find_by_id(234) 调用)所需的时间进行基准测试。
另外,我如何跟踪加载页面所需的时间,我知道我在运行 Rails 服务器时得到此信息,但这是在调试模式下,我想要生产速度基准,可能吗?
I want to benchmark the time it takes to load a module (a find_by_id(234) call).
Also, how can I track the time it takes to load a page, I know I get this information when I run rails server, but this is in debug mode, I want production speed benchmarks, possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了快速检查,我强烈建议查看 Benchmark。
一个例子是:
但是对于生产级别基准测试,我会查看New Relic。他们几乎对您所了解的所有内容都提供了令人难以置信的基准测试能想到的。
他们在这里有一个免费的开发者模式:
http://support.newrelic.com/kb/docs /开发者模式
For a quick check, I would highly recommend checking out Benchmark.
An example would be:
However for production level benchmarking, I would check out New Relic. They offer unbelievable benchmarking on nearly everything you could think of.
They have a free developer mode here :
http://support.newrelic.com/kb/docs/developer-mode
你可以使用这个宝石:
https://github.com/igorkasyanchuk/benchmark_methods
不再有这样的代码:
现在你可以这样做:
并且只需调用你的方法
You can use this gem:
https://github.com/igorkasyanchuk/benchmark_methods
No more code like this:
Now you can do:
And just call your method
我强烈建议您阅读Rails 性能测试指南。这是对 Rails 中可用内容的很好的概述。如果您想要进行自动化测试,您可以在其中更改代码并查看即时结果,那么这是很好的选择。
对于生产服务器基准测试,New Relic 可能可以满足您的所有需求。
I would highly recommend that you read the Rails Guide on Performance Testing. It's a pretty good overview of what's available within rails. It's great if you want automated tests where you can make code changes and see instant results.
For production server benchmarking, New Relic probably does everything you'd want.