I need to test Perl Application ( File operation , Data base operation..etc ) . I am looking for some profile tool for Perl code
is there any tools for Perl Code Profling like gprof in Linux
|
|
|
Just like with debugging, profiling is a task best done by the perl interpreter itself This website will give you an overview of using the |
|||
|
|
|
Some people might suggest to use Devel::DProf as the most standard way, but if you will look closely it's actually pretty bad solution. The best profiler for perl now is Devel::NYTProf. If you'll google for it, you will see some presentations that show what it is capable of. And it's a lot. |
|||
|
|
Krish: before you post questions, you should at least check the basic documentation. One way to look for something is So, for example,
And it goes on from there. |
|||
|
|