
HTTP::Session - simple session

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(
cookie_key => 'foo_sid'
),
request => $c->req,
);

Yet another session manager.
easy to integrate with HTTP::Engine =)

load session
filtering HTML
filtering redirect URL
filtering header
filtering response. this method runs html_filter, redirect_filter and header_filter.
keys of session.
get session item
set session item
remove item.
session as hashref.
expire the session
regenerate session id.remove old one when $delete_old is true value.
commit the session data.
internal use only

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

Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>

kazuhooku
amachang
walf443
yappo
nekokak

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

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

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