in reply to Re: Storable module
in thread Storable module

That would be spelt FreezeThaw :)


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
"Memory, processor, disk in that order on the hardware side. Algorithm, algorithm, algorithm on the code side." - tachyon

Replies are listed 'Best First'.
Re^3: Storable module
by eserte (Deacon) on Sep 09, 2004 at 09:19 UTC
    I had in my mind something which uses the same binary representation as Storable.

      I don't think Storable uses the same binary representation as Storable. :) Even with nstore() I get incompatible binaries from Storable on different platforms.

        Storable.pm is supposed to be backwards-compatible. You should be able to read a (nstore) storable file with every Storable version which is same or newer as the Storable module used for writing.