Apache::PageKit::Session - Session Handling
An adaptation of Apache::Session to work with Apache::PageKit
Specify the class for the id generator. (The Apache::Session::Generate prefix is optional) Only for Apache::Session 1.5x.
Defaults to MD5.
Specify the class for the data serializer. (The Apache::Session::Serialize prefix is optional) Only for Apache::Session 1.5x.
Defaults to Storable.
Example using attributes to specfiy store and object classes instead of a derived class:
use Apache::PageKit::Session;
tie %session, 'Apache::PageKit::Session', undef, { Store => 'MySQL', Lock => 'MySQL', Handle => $dbh, LockHandle => $dbh };
NOTE: Apache::PageKit::Session will require the necessary perl modules for you.
This module was adapted from HTML::Embperl::Session by T.J. Mather <tjmather@anidea.com>.
Gerald Richter <richter@dev.ecos.de> is the current maintainer of HTML::Embperl::Session.
This class was written by Jeffrey Baker (jeffrey@kathyandjeffrey.net) but it is taken wholesale from a patch that Gerald Richter (richter@ecos.de) sent me against Apache::Session.