Apache::Session::Store::SharedMem can store persistent data in shared memory.
SYNOPSIS
use Apache::Session::Store::SharedMem;
my $store = new Apache::Session::Store::SharedMem;
$store->insert($ref);
$store->update($ref);
$store->materialize($ref);
$store->remove($ref);
This module fulfills the storage interface of Apache::Session. The serialized objects are stored in shared memory.
OPTIONS
This module can optionally take one argument in the usual Apache::Session style. The name of the option is expires_in, and the value is the amount of time, in seconds, that the data in the session will expire in.
# session wil expire in a day
tie %s, 'Apache::Session::SharedMem', undef, { expires_in => 86400 };
Product's homepage
Requirements:
· Perl
What's New in This Release: [ read full changelog ]
· make it work under Apache::Session::Flex