- or download this
package CGI::Armature::Bridge;
...
}
1;
- or download this
package CGI::Armature::Serializer;
...
}
1;
- or download this
use CGI::Armature::Serializer;
use XML::Simple;
...
XML::Simple->new(suppressempty=>q{}, noattr=>1),
$serialize_map,
);
- or download this
use CGI::Armature::Serializer;
use YAML;
...
YAML->new(),
$serialize_map,
);
- or download this
$data = $serializer->serialize($data_hash);
$data_hash = $serializer->deserialize($data);
- or download this
package CGI::Armature::Storage;
...
}
1;
- or download this
package CGI::Armature::Database;
...
}
1;
- or download this
use CGI::Armature::Storage;
use CGI::Armature::Database;
...
);
my $data = $storage->fetch($session_id);