Good morning, gang.

As we migrate to mod_perl, we have one major CGI that is scattered all
over the site.  It is directory local and reads config files to adjust
its output. Currently we have one copy in cgi-bin and quite literally
hundreds of symlinks to it from all over the site.

We want to rewrite this in modperl, but I was concerned about the
memory usage of cacheing each local copy.  If we put all the pertinent
code into a single module and just make all the local versions call a
processing method, won't the actual working code still be retained in
the module namespace? Since the interpreter is embedded in the server,
that should mean that all the little cached versions are just something
like "sub handler { Module->method; }", right? It just has to compile
and store the hook?

Is that worth worrying about, or am I misinterpreting?
Many thanks, and happy holidays. =o)

__________________________________________________
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to