HTTP::Session::Store::Null - dummy module for session store


HTTP-Session documentation Contained in the HTTP-Session distribution.

Index


Code Index:

NAME

Top

HTTP::Session::Store::Null - dummy module for session store

SYNOPSIS

Top

    HTTP::Session->new(
        store => HTTP::Session::Store::Null->new(),
        state => ...,
        request => ...,
    );

DESCRIPTION

Top

dummy module for session store

CONFIGURATION

Top

nop

METHODS

Top

select
update
delete
insert

for internal use only

SEE ALSO

Top

HTTP::Session


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__