The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Plugin::Session::Manager::Storage::File - stores session-data with file

SYNOPSIS

    use Catalyst qw/Session::Manager/;

    MyApp->config->{session} = {
        storage     => 'File',
        storage_dir => '/tmp',
        file_prefix => 'MyApp-Session',
        expires     => 3600,
    };

DESCRIPTION

This module allows you to handle session with file.

CONFIGURATION

storage_dir

'/tmp' is set by default.

file_prefix

'Catalyst-Session' is set by default.

expires

3600 is set by default.

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.