HTTP::Session::Store::CHI - store session data with CHI


HTTP-Session documentation  | view source Contained in the HTTP-Session distribution.

Index


NAME

Top

HTTP::Session::Store::CHI - store session data with CHI

SYNOPSIS

Top

    HTTP::Session->new(
        store => HTTP::Session::Store::CHI->new(
            chi => CHI->new(driver => 'memory'),
        ),
        state => ...,
        request => ...,
    );

    # or 

    HTTP::Session->new(
        store => HTTP::Session::Store::CHI->new(
            chi => {driver => 'memory'},
        ),
        state => ...,
        request => ...,
    );

DESCRIPTION

Top

store session data with CHI

CONFIGURATION

Top

memd

instance of CHI::Driver

expires

session expire time(in seconds)

METHODS

Top

select
update
delete
insert

for internal use only

SEE ALSO

Top

HTTP::Session, CHI


HTTP-Session documentation  | view source Contained in the HTTP-Session distribution.