Help for this page

Select Code to Download


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