NAME

Apache2::ASP::Session - Database-persisted Session data for Apache2::ASP

DESCRIPTION

In the Apache2::ASP web programming environment, the global $Session object is an instance of Apache2::ASP::Session.

Storing data in the $Session object makes that data available to future requests from the same client while that $Session is still active.

Because the data is persisted within an SQL database, you can take advantage of load-balanced servers without the need for "session affinity" at the network level.

DATABASE STRUCTURE

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

CREATE TABLE asp_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.