Devel::NYTProf is a Perl source code performance profiler.
7
votes
1answer
76 views
NYTProf Profiler for Perl
This question is about Devel::NYTProf profiler.
The output that I receive from the profiler for a simple line such as:
use strict;
OUTPUT:
statements: 3
Time on Line: 22µs
Calls: 2
Time in ...
2
votes
1answer
54 views
Using Devel::NYTProf on program that fork/execs
First I export PERL5OPT=-d:NYTProf from the command line so that my debugging option will be inherited by child processes. Then I launch my Perl program contactd. It forks to become a daemon ...
22
votes
1answer
390 views
Why does Perl compile diagnostics.pm if I have no diagnostics in my code?
When I was looking at the output of Devel::NYTProf v4 for a CGI program, I came across the diagnostics.pm in the report Source Code Files — ordered by exclusive time then name.
First I didn't ...