I\'m running into bottlenecks in my ruby application, but I can\'t figure out where it\'s slowing down. I found memprof, but it doesn\'t support 1.9. I also found ruby-prof
Have you tried profiling the GC? Ruby 1.9.2 includes GC::Profiler.
GC::Profiler
GC::Profiler.enable GC.start puts GC::Profiler.report
You may also want to look at ObjectSpace.count_objects.
ObjectSpace.count_objects