| HTTP-Session documentation | Contained in the HTTP-Session distribution. |
HTTP::Session::Store::Null - dummy module for session store
HTTP::Session->new(
store => HTTP::Session::Store::Null->new(),
state => ...,
request => ...,
);
dummy module for session store
nop
for internal use only
| HTTP-Session documentation | Contained in the HTTP-Session distribution. |
package HTTP::Session::Store::Null; use strict; use warnings; sub new { bless {}, shift } sub select { } sub insert { } sub update { } sub delete { } sub cleanup { Carp::croak "This storage doesn't support cleanup" } 1; __END__