Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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":



  • 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 having an uproarious good time at the Monastery: (5)
As of 2024-04-23 20:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found