in reply to Is there an advantage to storing references to objects in an attribute instead of the object itself?

Erm... Objects are references in Perl. If you're distinguishing between an object and a reference to an object, than that's the difference between a reference to (usually) a hash and a reference to a reference to a hash. Maybe there's something weird going on in your use case that you haven't mentioned, but, in general, there's no benefit to storing a reference to a reference instead of the original reference itself.
  • Comment on Re: Is there an advantage to storing references to objects in an attribute instead of the object itself?