如何输出 rake 任务的性能时间
我正在为大型 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Ruby 的 Stdlib 中有一个简单的基准测试库:
您可以将其放入 rake 任务中,就像自动“对所有 rake 任务执行进行基准测试”一样,这需要深入了解 rake 的内部结构。
更多信息请访问:http://ruby-doc.org/stdlib/libdoc /benchmark/rdoc/index.html
There is a simple benchmarking library in Ruby's Stdlib:
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
最后写了这个: rake-performance
Ended up writing this: rake-performance