in reply to Re: Profiling/Benchmarking web applications.
in thread Profiling/Benchmarking web applications
Are you suggesting optimizing non-profiled code? While experience usually helps you identify bottlenecks with mere eye-grep, you'd better not encourage others to do the same.
One of the most strong laws of performance tuning is: never ever even think of optimizing before profiling. You just gonna spend your time on the code that could potentially not affect performance at all. And you usually skip those things that are considered fast and quick, but in fact suck. You probably know about those gotchas with Cache::SharedMemoryCache or HTML::Template's global_vars. Weren't they surprises? Just examples of how important profiling is (and how rarely it is really carried on).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Profiling/Benchmarking web applications.
by dragonchild (Archbishop) on Aug 25, 2004 at 17:44 UTC |