the bottleneck is in general elsewhere, not in your Perl scripts being interpreted, for a web application. It's either the bandwidth (oh, yes...) or the database your Perl script is accessing... While you do take a performance hit it's not something that really affects you. In exchange, with interpreted languages (Perl in particular) you gain access to a level of flexibility that requires a lot more work in other languages. You pay a price you most of the times don't care about because of other factors that influence your performance for development-time flexibility and ease of doing things.

Think about this: A has $10billion in the bank and B has $11billion. Who is richer? Well, A, but really, at this fortune does that $1B really make a difference? They both have more than they need (was about to say "can spend" but I stopped). Similarly, you have other bottlenecks that make your price negligible compared to the benefits (many/most times).


In reply to Re: speed factor by RaduH
in thread speed factor by hashin_p

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.