NAME

HTTP::Session - simple session

SYNOPSIS

use HTTP::Session;

my $session = HTTP::Session->new(
    store   => HTTP::Session::Store::Memcached->new(
        memd => Cache::Memcached->new({
            servers => ['127.0.0.1:11211'],
        }),
    ),
    state   => HTTP::Session::State::Cookie->new(
        name => 'foo_sid'
    ),
    request => $c->req,
);

DESCRIPTION

Yet another session manager.

easy to integrate with PSGI =)

METHODS

CLEANUP SESSION

Some storage doesn't care the old session data.Please call $store->cleanup( $min ); manually.

AUTHOR

Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>

THANKS TO

kazuhooku
amachang
walf443
yappo
nekokak

REPOSITORY

I use github. repo url is here http://github.com/tokuhirom/http-session/tree/master

SEE ALSO

Catalyst::Plugin::Session, Sledge::Session

LICENSE

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