如何在Rails 3中启用内存和对象分析?

时间:2010-11-02 19:51:11

标签: ruby-on-rails ruby-on-rails-3 profiling

我运行了rake test:profile并得到了一份报告:

    process_time: 62 ms
          memory: unsupported
         objects: unsupported

如何启用内存和对象组件?

我正在使用ruby 1.9.2并且我的Gemfile中列出了ruby-prof

gem 'ruby-prof'

2 个答案:

答案 0 :(得分:2)

这个问题有点陈旧,所以你可能不再需要答案了,但我会在这里为其他可能遇到“内存:不支持”的人添加一些内容。

分配内存和分配对象信息需要运行修补版本的ruby。对于可能仍在使用1.8.7的任何人,这篇文章描述了修补ruby 1.8.7: http://patshaughnessy.net/2010/9/28/ruby187gc-patch

我还没有找到1.9.2的补丁版本,但是这个其他stackoverflow答案似乎暗示1.9.2内置GC分析: Is there a way to profile ruby 1.9.2 scripts with memory allocation reports?

我正好看着现在仍然运行1.8.7的旧应用程序,所以我没有进一步研究1.9.2

答案 1 :(得分:2)

使用此修补版本的1.92

$ rvm install 1.9.2-p290 --patch gcdata --name gcdata