(no title)
dgoodlad | 13 years ago
> Rails 2 introduced a new default session storage, CookieStore. CookieStore saves the session hash directly in a cookie on the client-side. The server retrieves the session hash from the cookie and eliminates the need for a session id. That will greatly increase the speed of the application, but it is a controversial storage option and you have to think about the security implications of it:
chris_wot|13 years ago
cheald|13 years ago
If you're using cookie sessions, you should know better than to store sensitive information in the session.