in reply to Re^2: Profiling/Benchmarking web applications.
in thread Profiling/Benchmarking web applications

Thanks for the tips, but the bottleneck turned out to be Template Toolkit. It's taking up an unbelievable 60% of the total invocation time. I'm actually pretty shocked

That's high. Are you:

  • Comment on Re^3: Profiling/Benchmarking web applications.

Replies are listed 'Best First'.
Re^4: Profiling/Benchmarking web applications.
by jryan (Vicar) on Aug 25, 2004 at 18:34 UTC

    I am creating the template instance only once, but I wasn't caching the compiled templates. I'm doing it now, and it cut the response time by 25%! Thanks!