Anyone have any "best practices" tips for Rails and sessions? The default session type for Rails3 is still cookie store, right? I used SqlSessionStore for a while and it worked well, but I may move away from that in favor of CookieStore.

Is it still not a good idea to use CookieStore for sensitive info, even with salted info or is that better stored in the DB?

Any tips or your own practices would be welcome. Thanks!

link|improve this question

58% accept rate
Also, what are the current thoughts around using Memcached for session storage? – Lukas Dec 9 '10 at 16:25
feedback

3 Answers

up vote 42 down vote accepted

Use the database for sessions instead of the cookie-based default, which shouldn't be used to store highly confidential information

Create the session table with

rake db:sessions:create

Run the migration

rake db:migrate

Make sure you also tell rails to use ActiveRecord to manage your sessions too.

Rails 3

config/initializers/session_store.rb:

Rails.application.config.session_store :active_record_store

Rails 2

config/environment.rb:

config.action_controller.session_store = :active_record_store
link|improve this answer
2  
I last heard ARstore for sessions was super slow. anyone know of benchmarks? – Lukas Aug 25 '10 at 20:49
So after you make those changes and configurations. You can start to use sessions[:test] = 5? Thanks – RoR Sep 17 '10 at 19:07
If you watch the sessions table growth and setup a job to prune it accordingly you won't have performance issues. – Bill Leeper Mar 28 at 21:50
feedback

I don't believe anything has changed in how anyone on any platform should handle cookie based sessions. Be skeptical of anything that passes beyond the server's control (cookies, form posts, etc.) Thats a general principle of web development.

As far the encryption, I don't know if anything has changed on that front.

Something to be mindful of with a cookie store is the limit to the amount of data, and the gotcha that this data will be sent on the wire in every request, where as a database store only transfers the id and the data lives on the server.

link|improve this answer
feedback

FWIW, rails 3.1 suggests running

rails generate session_migration

However this generates the exact same migration as

rake db:sessions:create
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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