NAME
Apache2::ASP::Session::Instance - 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::Instance.
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.
EXAMPLES
PUBLIC METHODS
save( )
Stores the contents of $Session in the database.
Abandon( )
Deletes all data from the $Session object. Returns an empty $Session object.
Lock( )
Does nothing. Returns 1.
Maintained for backwards-compatibility with Apache::ASP.
Unlock( )
Does nothing. Returns 1.
Maintained for backwards-compatibility with Apache::ASP.
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.