|
NAMECatalyst::Plugin::Session::FastMmap - [DEPRECATED] FastMmap sessions for Catalyst DEPRECATIONNote that this module is deprecated in favor of Catalyst::Plugin::Session. It works under Catalyst 5.5, but might not work in future versions. Using Catalyst::Plugin::Session should be a small change, since the API is mostly backwards compatible. SYNOPSIS use Catalyst 'Session::FastMmap';
MyApp->config->{session} = {
expires => 3600,
rewrite => 1,
storage => '/tmp/session'
};
$c->session->{foo} = 'bar';
print $c->sessionid;
DESCRIPTION"Catalyst::Plugin::Session::FastMmap" is a fast session plugin for Catalyst that uses an mmap'ed file to act as a shared memory interprocess cache. It is based on "Cache::FastMMap". EXTENDED METHODS
METHODSCONFIG OPTIONS
SEE ALSOCatalyst, Cache::FastMmap, Catalyst::Plugin::Session. AUTHORSebastian Riedel <"sri@cpan.org">, Marcus Ramberg <"mramberg@cpan.org">, Andrew Ford <"andrewf@cpan.org"> COPYRIGHTThis program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
|