Any way to increase RSS (shared memory) by pre-loading under fastcgi?

"Michael Lloyd" <[email protected]>
Newsgroups gmane.comp.web.fastcgi.devel
Message-ID <002401c47f17$9db53390$6400a8c0@mlloydpc>
I am familiar with some pre-loading tricks under mod-perl (loading code,
vars before the server forks). Is there any advantage (in terms of shred
memory) to using or requiring modules before waiting for requests? Any
other tricks to improve shared memory under fastcgi?

-------------
use Some::Module;
while (my $q = CGI::Fast->new()) {
    ... 
}

---- vs. ----
while (my $q = CGI::Fast->new()) {
    require Some::Module;
    ... 
    
}


Thanks,
Mike

___________________________________
fastcgi-developers mailing list
http://fastcgi.com/fastcgi-developers/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.