I'm using AUTOLOADed accessors in a base class and
currently it installs the accessor in the symbol table:
sub AUTOLOAD {
...
*{$AUTOLOAD} = sub { ... };
goto &$AUTOLOAD;
}
However, I think that code installs it into each sub-class.
Installing it in the base class would be better and easy
enough, but I'm more concerned about whether I should be
doing it at all under mod_perl. According to my
"mod_perl guide" brain-washing, you should avoid importing
symbols to save memory. So why not just do it in
AUTOLOAD? (performance vs memory???)
sub AUTOLOAD {
my($attr) = $AUTOLOAD =~ /^.*::(.+)$/;
return $_->{$attr};
}
I really should just do some testing...
This code isn't in production so can be changed freely.
Thanks, Brad
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.