NAME
Apache2::ASP::Application - Shared data for Apache2::ASP applications.
DESCRIPTION
The global $Application
object is an instance of Apache2::ASP::Application
.
Placing data inside the $Application
object makes it available to all future requests to that web application.
Because the data is persisted within an SQL database, you can take advantage of load-balanced servers without sacrificing the ability to share data across your application.
DATABASE STRUCTURE
Applications are stored in a SQL database table with the following structure:
CREATE TABLE asp_applications (
application_id VARCHAR(100) PRIMARY KEY NOT NULL,
application_data BLOB
);
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.