in reply to How to measure execution time in Perl

You might also be interested in using a profile. Devel::NYTProf is a very good and informative profiler, it makes it quite easy to spot bottlenecks in your programs.
Perl 6 - links to (nearly) everything that is Perl 6.
  • Comment on Re: How to measure execution time in Perl

Replies are listed 'Best First'.
Re^2: How to measure execution time in Perl
by rcaputo (Chaplain) on Jan 11, 2010 at 22:05 UTC

    I'd just like to add that Devel::NYTProf supports multiple ways to measure the time it takes to run some code. The documentation is great, and it covers the benefits and problems associated with each profiling method. You can learn a lot without ever using the module.