NAME

Apache::Session::Serialize::DBMS::Storable - Use Storable to zip up persistent data

SYNOPSIS

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

DESCRIPTION

This module fulfills the serialization interface of Apache::Session. It serializes the data in the session object by use of Storable's nfreeze() and thaw() functions. The result is a binary object ready for storage.

AUTHOR

This module was written by Alberto Reggiori <alberto@asemantics.com>

SEE ALSO

Apache::Session::DBMS