The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Plugin::Session::Store::CouchDB - Store sessions using CouchDB

SYNOPSIS

        In your application class:

        use Catalyst qw/
                Session
                Session::Store::CouchDB
        /;

        In your configuration (given values are default):
 
        <Plugin::Session>
                couch_uri http://localhost:5984
                couch_database app_session
        </Plugin::Session>

DESCRIPTION

This plugin will store and retrieve your session data using a CouchDB store.

METHODS

See Catalyst::Plugin::Session::Store.

get_session_data
store_session_data
delete_session_data
delete_expired_sessions

AUTHOR

Nicholas Melnick

COPYRIGHT AND LICENSE

Copyright (c) 2013, Nicholas Melnick

This library is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.