in reply to Re^2: How to duplicate objects?
in thread How to duplicate objects?

Especially, decide what you want to do with GLOB objects. IIRC, Storable will refuse to clone them, but Clone will do it.

Replies are listed 'Best First'.
Re^4: How to duplicate objects?
by DrHyde (Prior) on Sep 16, 2008 at 10:24 UTC
    I was thinking more of objects which really just store a pointer reference to data in global variables - eg, an object might just be a blessed scalar holding an ID, which is then used internally as the key in a global hash. Such techniques are reasonably common.