Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Unloading a perl module

by Arguile (Hermit)
on Nov 14, 2001 at 15:24 UTC ( [id://125293]=note: print w/replies, xml ) Need Help??


in reply to Unloading a perl module

Better to declare them in httpd.conf or a startup.pl type script.
# httpd.conf PerlModule Date::Manip # or startup.pl use Date::Manip ();

This allows them to be cached on server boot and shared between child processes. The () after the module in startup.pl is very important as it means the module won't polute your global namespace (exports nothing).

This gives you the performance advantage of having the module already compiled and cached, while keeping your memory requirements (per child) down. Make sure to still use the module in your hanlder/script though; while not always nesseccary it gets pretty confusing if you don't.

If you're running Apache::Registry or PerlRun the rules are slightly different. Check the guide for more info.

Replies are listed 'Best First'.
Re: Re: Unloading a perl module
by mce (Curate) on Nov 14, 2001 at 15:34 UTC
    Hi,
    After a quick supersearch, I came up with this node
    ---------------------------
    Dr. Mark Ceulemans
    Senior Consultant
    IT Masters, Belgium
Re: Re: Unloading a perl module
by ehdonhon (Curate) on Nov 14, 2001 at 17:38 UTC

    I've tested this in the past. I found that even if you don't have a startup.pl and just let your cgi scripts use the modules, they still get loaded into global namespace to be shared by all the children. I didn't do a lot of testing in this area, so your results may vary. If they do, I'd love to hear more about it.

      The manual states (IIRC) that modules are shared until you modify internal variables, and then they become specific to the process that modified the variable. So as long as you don't keep state in the modules (few do) you will be getting the most efficient treatment.

      ____________________
      Jeremy
      I didn't believe in evil until I dated it.

      This is only true if your CGI scripts get loaded during startup, i.e. any modules you load and any modules they load during server startup will be shared via copy-on-write.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://125293]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-24 04:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found