In fact I have in fact two questions in one...

1) I am in the process of writing a CGI script that would be run quite often, and would need only a few of the many possibilities provided by CGI.pm (mostly param and header)... And I heard that using CGI.pm can quite slow down a script... Would use CGI /:cgi/ help, or should I rewrite the few bits I need?

2) This script will have some very different behaviors depending on the parameter the user feeds to it... Since it's CGI (no mod_perl yet), would something like

if($do eq 'this') { require This } else { require That }
help? It should be quicker than to parse and reparse all the (mostly useless) subs every time, shouldn't it?

Thanks for your comments.


In reply to require() on the fly by BooK

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.