http://www.perlmonks.org?node_id=191136


in reply to Re: (jeffa) Re: Optimizing existing Perl code (in practise)
in thread Optimizing existing Perl code (in practise)

Another, and I think far more common case, where optimization for speed is rightfully desirable would be the code that drives a dynamic website. See perrin's impressive eToys success story for an admittedly extreme example; when you're facing a million pageviews an hour, you don't want your code to be wasting time, but even much lesser loads make speed an important goal. Nevertheless, of course, it does not override the factor of maintainability.

Makeshifts last the longest.

  • Comment on Re^3: Optimizing existing Perl code (in practise)

Replies are listed 'Best First'.
Re: Re^3: Optimizing existing Perl code (in practise)
by cybear (Monk) on Aug 19, 2002 at 14:01 UTC
    I agree. But wouldn't you concider that a "huge job"? - cybear