in reply to Memory Management...
So long as you have no reference loops (e.g. $a->{next} = \$b; $b->{next} = \$c; $c->{next} = \$a) you'll be fine. If you do have loops or what not you'll need to explicitly break them (see HTML::Element for a real world example).
|
|---|