in reply to Re: Profiling woes
in thread Profiling woes

try to narrow the problem down as much as possible
Exactly. If it's a CGI that uses DBI, create two test programs, one that only uses the CGI functionality, the other that only performs the DBI functionality. Find which one runs slow. Break that test program down...

Replies are listed 'Best First'.
Re^3: Profiling woes
by goupilInside (Sexton) on Apr 09, 2008 at 15:24 UTC
    I actually only mentioned CGI because of eventual interaction with the profiling environment.
    But the script is really dependant of getting its data from the database, hard to do without (ok I could do without if I had some stub objects and data, but I don't for now).
    That's why I really thought I had a good approach with the profiling (for once).