• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Catalyst/Plugin/Session/Store/Memcached/H26-Sep-2008-16167

t/H26-Sep-2008-4024

Build.PLH A D26-Sep-2008470 1412

MANIFESTH A D26-Sep-2008167 1110

META.ymlH A D26-Sep-2008609 2221

Makefile.PLH A D26-Sep-2008612 1715

READMEH A D26-Sep-20081.3 KiB4937

README

1NAME
2    Catalyst::Plugin::Session::Store::Memcached::Fast - Memcached session
3    storage backend.
4
5SYNOPSIS
6        use Catalyst qw/Session Session::Store::Memcached::Fast Session::State::Foo/;
7
8        MyApp->config->{session} = {
9            expires => 3600,
10            servers => ['127.0.0.1:11210'],
11            # another Cache::Memcached::Fast params
12        };
13
14        # ... in an action:
15        $c->session->{foo} = 'bar'; # will be saved
16
17DESCRIPTION
18    "Catalyst::Plugin::Session::Store::Memcached::Fast" is a fast session
19    storage plugin for Catalyst that uses memcached cache. It is based on
20    Cache::Memcached::Fast.
21
22  METHODS
23    get_session_data
24    store_session_data
25    delete_session_data
26    delete_expired_sessions
27        These are implementations of the required methods for a store. See
28        Catalyst::Plugin::Session::Store.
29
30    get_and_set_session_data
31        This is the optional method for atomic write semantics. See
32        Catalyst::Plugin::Session::AtomicWrite.
33
34    setup_session
35        Sets up the session connection.
36
37CAVEATS
38CONFIGURATION
39SEE ALSO
40    Catalyst, Catalyst::Plugin::Session, Cache::Memcached::Fast.
41
42AUTHORS
43    Denis Arapov, "bwizard@blackwizard.pp.ru"
44
45COPYRIGHT
46    This program is free software, you can redistribute it and/or modify it
47    under the same terms as Perl itself.
48
49