[Catalyst] Troubleshooting Help Please
Moritz Onken
onken at houseofdesign.de
Mon Oct 6 15:14:26 BST 2008
>
> 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
More information about the Catalyst
mailing list