I think it's likely that you do not have IIS configured to run via CGI, but instead have it configured to run via FastCGI or some other persistent mechanism.

That's generally considered a good thing. It means that your Perl script can save doing a bunch of initialization stuff for every single request (loading modules, connecting to databases, etc) and instead do it just once. This could allow you to process many more requests per second.

However, it does mean that you've got to be careful not to persist stuff you don't want to persist. Generally making sure that variables are lexically scoped (i.e. my $var) should be sufficient to take care of that. The other thing you'll need to be careful about is leaking memory. This can happen if you have cyclical references pointing to each other, e.g.:

my $a = []; my $b = []; push @$a, $b; push @$b, $a;

... these two arrays now each contain a reference to each other, so Perl doesn't ever realise it can free that memory, and doesn't free it until the end of the process. If every web request creates these two arrays, then the process ends up eating a little more memory for each request.

But anyway, although you need to be a little more careful than you do with CGI, generally speaking a persistent Perl interpreter is a good way of serving web content.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

In reply to Re: Perl Variables Being Retained by tobyink
in thread Perl Variables Being Retained by oioigazza

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.