remember the adage -- you can perhaps write faster programs in C, but you can most always program faster in Perl.

Perl is easier than C. Make it even easier for yourself. Unless you have a million line Amazon.com kinda code that is being hit by 28,000 users every minute, you shouldn't give a rat's batuti that you are able to shave off another 15 milliseconds from your code by converting $do_this_thing to $d.

You might, however, want to spend an extra 35000 ms thinking about the names... for example, I try to make the variable names about the same length (without getting into unreasonable contortions) just so they line up nice and neat. Neatness in code always improves readability which directly contributes to the adage mentioned above.

--

when small people start casting long shadows, it is time to go to bed

In reply to Re: Efficiency and length of variable names by punkish
in thread Efficiency and length of variable names by moggs

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.