The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::Session::Serialization::Storable - Serialization module for WWW::Session with Storable backend

DESCRIPTION

Storable serialization engine for WWW::Session objects

VERSION

Version 0.12

SYNOPSIS

This module handles serialization for WWW::Session objects using Storable.

This module can serialize complex structures wich contain objects.

The object implements two main methods : serialize() and expand()

    use WWW::Session::Serialization::Storable;

    my $foo = WWW::Session::Serialization::Storable->new();
    ...

    $string = $serializer->serialize($structure);
    
    ...
    $structure = $serializer->expand($string);

SUBROUTINES/METHODS

new

Creates a new WWW::Session::Serialization::Storable object

Usage :

    my $serializer = WWW::Session::Serialization::Storable->new();
    

No arguments required.

serialize

Serializes a structure and returns a binary string containing all the data

expand

Deserializes binary string and returns a structure containing all the data

AUTHOR

Gligan Calin Horea, <gliganh at gmail.com>

BUGS

Please report any bugs or feature requests to bug-www-session at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Session. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc WWW::Session::Serialization::Storable

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2012 Gligan Calin Horea.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.