vote up 2 vote down star
1

I'd like to provide a "log out" function in a Rails app. Should I do...

session.delete

or

reset_session

From reading the docs, both look like they could work. Does it matter? Or should I use something else?

flag

1 Answer

vote up 6 vote down check

I'd use reset_session, because it's part of the Rails API; whereas CGI::Session#delete is effectively an implementation detail which might change.

link|flag

Your Answer

Get an OpenID
or

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