in reply to Re^2: Pragma (more) like Java's 'import'? (importing and mod_perl)
in thread Pragma (more) like Java's 'import'?
I have a vague suspicion that they might be avoiding imports due to the memory cost - which is significant in a mod_perl environment.
Importing is aliasing. You're not copying the function, but merely aliasing it. All it costs is one symbol table entry.
Things are different when autoloading takes place, but it depends on the implementation then.
Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re^2: Pragma (more) like Java's 'import'? (importing and mod_perl)
by perrin (Chancellor) on May 12, 2003 at 06:49 UTC | |
by Juerd (Abbot) on May 12, 2003 at 07:28 UTC | |
by perrin (Chancellor) on May 12, 2003 at 17:19 UTC | |
by Juerd (Abbot) on May 12, 2003 at 17:33 UTC |