It's often hard to find a balance between performance and writing readable code. We all know that it's more efficent to combine multiple "prints" into one statement. Further according to Mastering Algorithms in Perl it is "1.5%" faster to use a "," instead of a "." in combined print statements. But beyond that what else is possible? It is often nessicary to break up data output into different subs or to have logic mixed between statements. So is it more efficent (correct?) to store output in a scalar and then "print" it when your done generating output or to make several prints.

Of course this would be on a much larger scale...

$string .= "someoutput"; $string .= "someotheroutput"; # logic here $string .= "moreoutput"; print $string;
vs.
print "someoutput", "someotheroutput"; # loging here print "moreoutput";
Also how much will performance vary on different platforms and how large a difference will perl's buffering have?

Cheers,
-Dogma


In reply to Optimizing Output by Dogma

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.