
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.
internal use only

Tokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM>

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.