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

NAME

Prancer::Session::Store::Memory

SYNOPSIS

This module implements a session handler where all sessions are kept in memory. This SHOULD NOT BE USED IN PRODUCTION. If the server restarts all of your users will be logged out. If you are using a multi-process server like Starman, your users will be logged out whenever they connect to a different process so basically every time they connect. This should be used strictly for testing.

Though this will be the default session handler if none is configured, it can be explicitly configured like this:

    session:
        store:
            driver: Prancer::Session::Store::Memory