I am trying to serialize a hash of hashes and then deserializing it to get back the original hash of hashes ..the issue is whenever i deserialize it ..it appends an autogenerated $var1 eg.
original hash
%hash=(flintstones => {
husband => "fred",
pal => "barney",
},
jetsons => {
husband => "george",
wife => "jane",
"his boy" => "elroy",
},
);
comes out as $VAR1 = { 'simpsons' => { 'kid' => 'bart', 'wife' => 'marge', 'husband' => 'homer' }, 'flintstones' => { 'husband' => 'fred', 'pal' => 'barney' }, };
is there any way i can get the original hash of hashes without the $var1..??
$VAR1is not prepended. It's part of the serialisation. What makes you think that gives a different hash after you deserialise it? How do you deserialise it? – ikegami Jul 24 '12 at 1:57$VAR1is part of Data::Dumper's serialisation. You've just showed that Storable worked correctly. – ikegami Jul 24 '12 at 2:12