NAME

Apache2::ASP::Session - Factory for Session objects.

DESCRIPTION

Apache2::ASP::Session is a factory for Apache2::ASP::Session::Instance objects.

This module is used internally by Apache2::ASP only and should not be used directly.

DATABASE STRUCTURE

Sessions are stored in a SQL database table with the following structure:

CREATE TABLE sessions (
  session_id CHAR(32) PRIMARY KEY NOT NULL,
  session_data BLOB,
  created_on DATETIME,
  modified_on DATETIME
);

AUTHOR

John Drago jdrago_999@yahoo.com

COPYRIGHT AND LICENSE

Copyright 2007 John Drago, All rights reserved.

This software is free software. It may be used and distributed under the same terms as Perl itself.