Apache::Session::Serialize::Dumper - Use Data::Dumper to zip up persistent data
use Apache::Session::Serialize::Dumper; $zipped = Apache::Session::Serialize::Dumper::serialize($ref); $ref = Apache::Session::Serialize::Dumper::unserialize($zipped);
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.
This module was written by Pascal Fleury <fleury@users.sourceforge.net>.
the Data::Dumper manpage the Apache::Session::Serialize::Base64 manpage, the Apache::Session::Serialize::Storable manpage, the Apache::Session manpage