Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
1  
Also, what are the current thoughts around using Memcached for session storage? – Lukas Dec 9 '10 at 16:25

3 Answers

up vote 75 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
share|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
2  
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 '12 at 21:50
3  
Does this conflicts with devise? – David Mauricio Jun 14 '12 at 3:07
2  
Over here, Rails 3.2, it is something like TheNameOfMyApplication::Application.config.session_store :active_record_store – Eduardo Jan 10 at 4:02

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.

share|improve this answer

FWIW, rails 3.1 suggests running

rails generate session_migration

However this generates the exact same migration as

rake db:sessions:create
share|improve this answer
On the same note, the rake task db:sessions:create now directly invokes the session_migration generator. task :create => :environment do raise "Task unavailable to this database (no migration support)" unless ActiveRecord::Base.connection.supports_migrations? require 'rails/generators' Rails::Generators.configure! require 'rails/generators/rails/session_migration/session_migration_generator' Rails::Generators::SessionMigrationGenerator.start [ ENV["MIGRATION"] || "add_sessions_table" ] end – slant Sep 14 '12 at 20:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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