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: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/