B Seven
B Seven

Reputation: 45943

What profilers are available for Ruby?

I found this SO question that mentions the GC profiler: Is there a way to profile ruby 1.9.2 scripts with memory allocation reports?

Are there any other profilers? Preferably free, easy to use, and work with Ruby 1.9.3.

Upvotes: 0

Views: 201

Answers (1)

Hew Wolff
Hew Wolff

Reputation: 1509

There's a built-in profiler available with "-r profile", which I've used happily. There's also a gem called ruby-prof.

Upvotes: 1

Related Questions