![]() |
![]()
| ![]() |
![]()
NAMEPlack::Session - Middleware for session management SYNOPSIS# Use with Middleware::Session enable "Session"; # later in your app use Plack::Session; my $app = sub { my $env = shift; my $session = Plack::Session->new($env); $session->id; $session->get($key); $session->set($key, $value); $session->remove($key); $session->keys; $session->expire; }; DESCRIPTIONThis is the core session object, you probably want to look at Plack::Middleware::Session, unless you are writing your own session middleware component. METHODS
Session Data ManagementThese methods allows you to read and write the session data like Perl's normal hash. Session Lifecycle Management
BUGSAll complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT. AUTHORStevan Little <stevan.little@iinteractive.com> COPYRIGHT AND LICENSECopyright 2009, 2010 Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|