![]() |
|
Perl: the Markov chain saw | |
PerlMonks |
comment on |
( #3333=superdoc: print w/replies, xml ) | Need Help?? |
IMHE (In My Humble Experience), the sub based profilers often tell you what you already know, i.e. one particular sub is to blame. I found Devel::FastProf a line based profiler, very useful. It gives you information on what parts of the evil sub are the real performance killers. You use fprofpp to read the profile information.
Example output This also gives you useful debugging information, i.e. a certain line of code is executed less/more often than anticipated. So in practice I combine DProf and FastProf. However... then I read about Devel::NYTProf, as suggested by missingthepoint above. It seems to combine the best of both DProf and FastProf and on top of that has tons of extra features. Well, that’s the next one on my TO DO list... In reply to Re: Profiling your code.
by dHarry
|
|