Authentication
                Session
                        Session::Store::FastMmap
                        Session::State::Cookie

Storing the session with FastMmap is not a good idea. If the cache_size
of FastMmap is exhausted it starts dropping sessions to make space
for new sessions.

You can change the cache size by setting it like this (default is 5mb):

cache:
    backend:
        class: Cache::FastMmap
        cache_size: 100m

But I'd suggest you change to Session::Store::DBIC or something else
which does not drop sessions if you run out of space.

greets,

moritz

_______________________________________________
List: Catalyst@lists.scsys.co.uk
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/
Dev site: http://dev.catalyst.perl.org/

Reply via email to