Sessions

To use sessions and the session hash all you need to do is create a session variable like so: session[:key_name] = ...

Everything else is automatic, at least if you haven't touched the original Rails settings.

You don't need to use filters to use sessions, but for user authentication for example it is probably a good idea.

Regards

Erik Lindblad