in reply to using Hash::Case and Storable together

Try to store and retrieve the object behind the tied hash. I.e.: store(tied(%realhash), "file");

After retrieving the object, use the Tie::Restore module to get the tied hash again.

Replies are listed 'Best First'.
Re: Re: using Hash::Case and Storable together
by agaffney (Beadle) on May 02, 2004 at 05:33 UTC
    I ended up taking the easy way out and copying the entire structure with a 'foreach(keys %retrievedhash)' or something similar to the tied hash. Thanks for the suggestions, though.