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


in reply to Optimizing existing Perl code (in practise)

If it has been said once it has been said a thousand times "beware of premature optimization!" Ask yourself, "does this really need to be faster? Really?"

I think a very important item to optimize is code maintainabibilty - how easy is it to extend your program and fix bugs that break your code?

So, how do i optimize my Perl code? I generally don't (but i do try to get it right the first time - measure twice, cut once). If i do, it is to replace areas of wheel re-invention with CPAN modules, or to refactor items into classes to improve robustness. If i wanted faster code i would port it to C instead, but since most of what i write relies on database and web servers, Perl is 90% of the time not the bottleneck.

jeffa

L-LL-L--L-LL-L--L-LL-L--
-R--R-RR-R--R-RR-R--R-RR
B--B--B--B--B--B--B--B--
H---H---H---H---H---H---
(the triplet paradiddle with high-hat)
  • Comment on (jeffa) Re: Optimizing existing Perl code (in practise)

Replies are listed 'Best First'.
Re: (jeffa) Re: Optimizing existing Perl code (in practise)
by cybear (Monk) on Aug 19, 2002 at 10:56 UTC
    The fastest script in the world is worthless if a change in your
    system's directory structure breaks your code and you can't fix it.

    If you bother to optimize for anything, do it for maintainability
    But never forget "monitorability".

    Unless your script is being called to do huge jobs, or your resources
    are very restricted (Sparc Ultra 1 or Intel 486, etc.) optimization for
    speed is not usually that big an issue.

    However, thorough and correct logging of events, meaningful commentary
    in the script itself, reusability of the code; these will all help
    with maintainability.

      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.

        I agree. But wouldn't you concider that a "huge job"? - cybear