Re: Perl optimization tools

2003-11-20 Thread Bob X
SciTE has the following command, so it must have a Lint somewhere as a module. perl -MO=Lint,all -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Perl optimization tools

2003-11-19 Thread Paul Johnson
On Wed, Nov 19, 2003 at 09:40:20AM -0500, Jeff 'japhy' Pinyan wrote: > On Nov 19, EUROSPACE SZARINDAR said: > > >Are there tools like in C (lint, gconv, gprof) to know a little more about > >the perl execution. > > > >What could be very usefull : > >nb of times a subroutine is executed, > >time sp

Re: Perl optimization tools

2003-11-19 Thread Jeff 'japhy' Pinyan
On Nov 19, EUROSPACE SZARINDAR said: >Are there tools like in C (lint, gconv, gprof) to know a little more about >the perl execution. > >What could be very usefull : >nb of times a subroutine is executed, >time spent per sub, >memory usage, You want the Devel::DProf module. It gives you spe

Perl optimization tools

2003-11-19 Thread EUROSPACE SZARINDAR
Hi all, Are there tools like in C (lint, gconv, gprof) to know a little more about the perl execution. What could be very usefull : nb of times a subroutine is executed, time spent per sub, memory usage, Before rewriting a perl program into C better knowing where the time is wasted and