|
NAMEHTTP::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,
);
DESCRIPTIONYet another session manager. easy to integrate with PSGI =) METHODS
CLEANUP SESSIONSome storage doesn't care the old session data.Please call $store->cleanup( $min ); manually. AUTHORTokuhiro Matsuno <tokuhirom AAJKLFJEF GMAIL COM> THANKS TO kazuhooku
amachang
walf443
yappo
nekokak
REPOSITORYI use github. repo url is here <http://github.com/tokuhirom/http-session/tree/master> SEE ALSOCatalyst::Plugin::Session, Sledge::Session LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|