in reply to Overloading subs = weirdness in mod_perl
Just a note, you want to avoid writing functions to your symbol table at runtime. Perl's cache over @ISA is thrown away whenever you do this. This is so that any method calls take into account whatever method it was that you altered.
Good runtime code won't throw away this cache and especially not on a per-request basis.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Overloading subs = weirdness in mod_perl
by cfreak (Chaplain) on Nov 16, 2004 at 16:53 UTC |