The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Catalyst::Plugin::Session::Manager::Client::Cookie - stores session id with cookie

SYNOPSIS

use Catalyst qw/Session::Manager/;

MyApp->config->{session} = {
    client  => 'Cookie',
    expires => 3600,
};

DESCRIPTION

This module allows you to store session id in your browser's cookie.

CONFIGURATION

expires

3600 is set by default.

domain

Override the domain for the cookie

SEE ALSO

Catalyst

Catalyst::Plugin::Session::Manager

AUTHOR

Lyo Kato <lyo.kato@gmail.com>

COPYRIGHT AND LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.