It will be slower, but since you are using Mason anyway you are presumably using mod_perl. So the cost of loading the subroutines through the autoloader will only be paid the first time a given subprocess loads the module.

You should probably load this module (any any other module you use a lot) in the mason_handler itself. In my handler I have:

{ package HTML::Mason::Commands; # Used by modules use Apache::DBI; use DBI; use DBD::Oracle; use CGI qw(-compile :all *table); }
The braces are significant because they provide the appropriate scope for the package so the subroutines get imported into the correct namespace. You need to make sure that your package lines up with the one that mason will run your code in (HTML::Mason::Commands is the default so use that unless you overrode it in the Parser).

The -compile argument to the 'use CGI' forces all subroutines to be loaded now rather than on their first usage so that they load into shared pages of the base apache process and the memory will be shared across all children. So you pay a little up front cost when starting the server, but subsequent uses are pretty fast and you save memory. What a deal

So in short: make sure you are using mod_perl, preload the stuff and it will not cost much.


In reply to Re: CGI.pm performance issues.... by knobunc
in thread CGI.pm performance issues.... by indigo

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.