本文介绍了如何剖析JRuby代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想分析我的JRuby应用程序.对于MRI,我始终使用ruby-prof,但我认为这不适用于JRuby.我不想使用Java分析器,因为它不会给我红宝石行号.
I'd like to profile my JRuby app. For MRI I always use ruby-prof, but I don't think this works on JRuby. I don't want to use a Java-profiler, because it won't give me the ruby line numbers.
有一个jruby教授吗?
Is there a jruby-prof?
推荐答案
JRuby 1.5.5包含一个不错的--profile命令行标志.
JRuby 1.5.5 includes a decent --profile command line flag.
像这样使用它:
jruby --profile -S <script> <args>
这篇关于如何剖析JRuby代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!