http://qs321.pair.com?node_id=161042


in reply to Object Serialization Basics

Nice tutorial, but I'd like to add a warning:
If you want to send a Storable-serialized object to another machine via network, then you should use special network-safe method nstore. All other modules mentioned here serialize to text, which is not prone to byte-order and similar platform incompatibilities.

Replies are listed 'Best First'.
Re: Re: Object Serialization Basics
by Anonymous Monk on Jul 19, 2002 at 15:39 UTC
    You'll also want to note that Storable is not platform-independent using nstore across a network with Dec Alpha (64-bit) - see http://www.bitmechanic.com/mail-archives/modperl/Jul1999/0749.html and thread!
Re^2: Object Serialization Basics
by siracusa (Friar) on Jul 21, 2005 at 17:01 UTC
    If you are shipping blessed thingies across a network, also make sure that the classes that the thingies are blessed into are loaded (not just installed, but loaded into memory--"use"ed or "require"ed) on the receiving side. If not, the thawing process may fail.