in reply to Re: Performance Tuning
in thread Performance Tuning

Before you try to wrap your head around the mod_perl book (I think I've read through it twice, and still don't get all of the intimate details), you might want to try to determine where the bottleneck is, and tune that part.

<p. If the problem is your database, enter 'mysql tuning' into your favorite search engine, and you should hopefully find good advice, such as:

And make sure, before you start tuning that you set a goal ... choose a performance metric, and work until you hit that number. Otherwise, you can run the risk of optimization obsession, and you spend days trying shave another 1/10th of a second off of your execution time, when it might be better spent on other tasks.

Replies are listed 'Best First'.
Re^3: Performance Tuning
by perrin (Chancellor) on May 22, 2005 at 16:18 UTC
    Good point, but the mod_perl book also has a lot of help for finding the bottleneck, using the Perl profiler and the DBI profiler.