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

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 => ...,
);

store session data with CHI


