Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-19 11:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found