Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: Storable: Byte order is not compatible

by Aristotle (Chancellor)
on Apr 26, 2012 at 14:02 UTC ( [id://967358]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Storable: Byte order is not compatible
in thread Storable: Byte order is not compatible

in our database, we have some frozen Perl hashes that were created with […] Storable

That right there is your problem. Storable makes no promises about binary compatibility across different releases or different perls. You do not want to use it as a serialisation mechanism. It is not a good idea for anything except intra- or interprocess communication between forks of the same process.

Most likely you want JSON. That will also decouple your data from perl. JSON::XS even happens to be faster than Storable, and by no small margin (which is where the simplicity of the JSON data model pays off).

Makeshifts last the longest.

  • Comment on Re^3: Storable: Byte order is not compatible

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://967358]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-23 13:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found