in reply to RFC Singleton Sessions
Yes that makes a lot of sense. I have a simple Singleton::Session module which I use on one of my projects.
It uses the MySQL driver, but that is irrelevant here.
In the code I just use:
my $session = Singleton::Session->instance(); $session->param( "bob" );
|
|---|