|
NAMECatalyst::Plugin::Session::Store::Memcached - Memcached storage backend for session data.SYNOPSISuse Catalyst qw/ Session Session::Store::Memcached Session::State::Foo /; MyApp->config( 'Plugin::Session' => { memcached_new_args => { # L<Cache::Memcached::Managed/new> 'data' => [ "10.0.0.15:11211", "10.0.0.15:11212" ], }, memcached_item_args => { # L<Cache::Memcached::Managed/set>, get, delete # ... }, }, ); # ... in an action: $c->session->{foo} = 'bar'; # will be saved DESCRIPTION"Catalyst::Plugin::Session::Store::Memcached" is a session storage plugin for Catalyst that uses the Cache::Memcached::Managed module to connect to memcached, a fast data caching server.METHODS
CONFIGURATIONThese parameters are placed in the hash under the "Plugin::Session" key in the configuration hash.
SEE ALSOCatalyst, Catalyst::Plugin::Session, Cache::Memcached.AUTHORSThis module is derived from Catalyst::Plugin::Session::FastMmap code, and has been heavily modified since.Tomas Doran, (t0m) "bobtfish@bobtfish.net" - current maintainer. Andrew Ford Andy Grundman Christian Hansen Yuval Kogman, "nothingmuch@woobling.org" Marcus Ramberg Sebastian Riedel head1 COPYRIGHT This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |