|
NAMECatalyst::Plugin::Session::Store::Memcached::Fast - Memcached session storage backend. SYNOPSIS use Catalyst qw/Session Session::Store::Memcached::Fast Session::State::Foo/;
MyApp->config->{session} = {
expires => 3600,
servers => ['127.0.0.1:11210'],
# another Cache::Memcached::Fast params
};
# ... in an action:
$c->session->{foo} = 'bar'; # will be saved
DESCRIPTION"Catalyst::Plugin::Session::Store::Memcached::Fast" is a fast session storage plugin for Catalyst that uses memcached cache. It is based on Cache::Memcached::Fast. METHODS
CAVEATSCONFIGURATIONSEE ALSOCatalyst, Catalyst::Plugin::Session, Cache::Memcached::Fast. AUTHORSDenis Arapov, "bwizard@blackwizard.pp.ru" COPYRIGHTThis program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
|