
MojoX::Session::Transport::Cookie - Cookie Transport for MojoX::Session

my $session = MojoX::Session->new(
transport => MojoX::Session::Transport::Cookie->new,
...
);

MojoX::Session::Transport::Cookie is a transport for MojoX::Session that gets and sets session id to and from cookies.

MojoX::Session::Transport::Cookie implements the following attributes.
path my $path = $transport->path;
$transport->path('/');
Get and set cookie path.
domain my $domain = $transport->domain;
$transport->domain('example.com');
Get and set cookie domain.
secure my $secure = $transport->secure;
$transport->secure(1);
Get and set cookie secure flag.

MojoX::Session::Transport::Cookie inherits all methods from MojoX::Session::Transport.
getGet session id from request cookie.
setSet session id to the response cookie.