vote up 1 vote down star

Trying to figure our how to create, store and retrieve session info in Catalyst. Any suggestions?

flag

2 Answers

vote up 4 vote down check

You need only to add the relevant session plugins to your use Catalyst line, ie:

use Catalyst qw/
                -Debug
                ...    
                Session
                Session::Store::FastMmap
                Session::State::Cookie
                /;

... and then you can refer to $c->session->{key} from there. There are some configurables about cookie age and so on, but the defaults are sane. That should get you started.

(Of course, you may need to install those Session-related modules from CPAN, if they're not available to you already.)

link|flag
Thanks RET, much appreciated. – freakwincy Nov 5 at 13:33
vote up 3 vote down

See Catalyst::Manual::Tutorial::05_Authentication.

link|flag
Thanks Fayland. I wasn't aware that there was a flash() method that persists values until they're read. Will give it a try. – freakwincy Nov 5 at 13:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.