Sessions
- Per-user data
- Stash goes away after request
- Session is per-user
- In Catalyst, use plugins
- Session, Session::Store::File (disk storage), Session::State::Cookie
use Catalyst qw/-Debug ConfigLoader Static::Simple
Session Session::Store::File Session::State::Cookie
Authentication
/;