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

NAME

Catalyst::Plugin::Session::Store::PSGI - Session plugin for access to PSGI/Plack session

VERSION

version 0.0.2

SYNOPSIS

    use Catalyst qw/
        Session
        Session::State::PSGI
        Session::Store::PSGI
    /;

DESCRIPTION

An alternative session storage plugin that allows sharing of the PSGI/Plack session information.

EXPERIMENTAL

This distribution should be considered experimental. Although functional, it may break in currently undiscovered use cases.

METHODS

The plugin provides the following methods:

get_session_data

store_session_data

delete_session_data

This method is NOOP - session data should be deleted by Plack::Middleware::Session

delete_expired_sessions

This method is NOOP - sessions should be expired by Plack::Middleware::Session

AUTHOR

Chisel <chisel@chizography.net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Chisel Wright.

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