I server quite a few CGI scripts from a fairly slow server, and the problem is that although perl scripts will run very fast, it's very slow to create new processes, initialise perl, and load all the modules before my script starts its work.

mod_perl solves this one by having all the modules loaded in advanced, and it's registry modules can cache compiled scripts in memory. But it's rather complicated, and your memory usage can get out of hand if you aren't watching, so I tried FastCGI. It's much simpler.

Rather than loading the script into apache, it creates a process for the script a lot like CGI, but it then just keeps on reusing it rather than discarding it after one use. The other advantage is that using CGI::Fast it's easy to convert your CGI scripts to FastCGI.

So my suggestion is that if you're starting out with Perl is to go with CGI since it's simpler, and you do have room to expand to mod_perl or FastCGI later.

--
integral, resident of freenode's #perl

In reply to Re: cgi or mod_perl by integral
in thread cgi or mod_perl by sberthold

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.