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

NAME

Apache::Session::Serialize::Dumper - Use Data::Dumper to zip up persistent data

SYNOPSIS

 use Apache::Session::Serialize::Dumper;
 
 $zipped = Apache::Session::Serialize::Dumper::serialize($ref);
 $ref = Apache::Session::Serialize::Dumper::unserialize($zipped);

DESCRIPTION

This module fulfills the serialization interface of Apache::Session. It serializes the data in the session object by use of Data::Dumper's dump() and Perl's eval() functions. The result is a text object ready for storage.

AUTHOR

This module was written by Pascal Fleury <fleury@users.sourceforge.net>.

SEE ALSO

Data::Dumper Apache::Session::Serialize::Base64, Apache::Session::Serialize::Storable, Apache::Session