如何输出 rake 任务的性能时间

发布于 2024-10-14 06:22:06 字数 128 浏览 1 评论 0原文

我正在为大型 .net 解决方案(使用 albacore gem)处理 rake 任务,并且我希望能够将运行的任何 rake 任务的启动和停止时间记录到文件中,以尝试加快构建速度并找到瓶颈。是否有我可以使用的内置内容,或者我需要编写一些内容?

I'm working on rake tasks for a large .net solution (using the albacore gem) and I want to be able to record to a file start and stop times for any rake tasks that run to try and speed up our build and locate bottlenecks. Is there anything built in that I can use, or do I need to write something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

帅的被狗咬 2024-10-21 06:22:06

Ruby 的 Stdlib 中有一个简单的基准测试库:

require 'benchmark'

puts Benchmark.measure { "a"*1_000_000 }

您可以将其放入 rake 任务中,就像自动“对所有 rake 任务执行进行基准测试”一样,这需要深入了解 rake 的内部结构。

更多信息请访问:http://ruby-doc.org/stdlib/libdoc /benchmark/rdoc/index.html

There is a simple benchmarking library in Ruby's Stdlib:

require 'benchmark'

puts Benchmark.measure { "a"*1_000_000 }

You could drop that in your rake tasks, as for an automatic "benchmark all rake task executions", that would take a little digging into the innards of rake.

More info at: http://ruby-doc.org/stdlib/libdoc/benchmark/rdoc/index.html

反话 2024-10-21 06:22:06

最后写了这个: rake-performance

Ended up writing this: rake-performance

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