如何准确地衡量加载模型所需的时间?

发布于 2024-10-30 17:58:55 字数 121 浏览 1 评论 0原文

我想对加载模块(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

初见 2024-11-06 17:58:55

为了快速检查,我强烈建议查看 Benchmark

一个例子是:

require "benchmark"

time = Benchmark.measure do
  a.find_by_id(234)
end
puts time

但是对于生产级别基准测试,我会查看New Relic。他们几乎对您所了解的所有内容都提供了令人难以置信的基准测试能想到的。

他们在这里有一个免费的开发者模式:

http://support.newrelic.com/kb/docs /开发者模式

For a quick check, I would highly recommend checking out Benchmark.

An example would be:

require "benchmark"

time = Benchmark.measure do
  a.find_by_id(234)
end
puts time

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

偏爱你一生 2024-11-06 17:58:55

你可以使用这个宝石:
https://github.com/igorkasyanchuk/benchmark_methods

不再有这样的代码:

t = Time.now
user.calculate_report
puts Time.now - t

现在你可以这样做:

benchmark :calculate_report # in class

并且只需调用你的方法

user.calculate_report

You can use this gem:
https://github.com/igorkasyanchuk/benchmark_methods

No more code like this:

t = Time.now
user.calculate_report
puts Time.now - t

Now you can do:

benchmark :calculate_report # in class

And just call your method

user.calculate_report
半﹌身腐败 2024-11-06 17:58:55

我强烈建议您阅读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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文