Archive for category Sessions
Storing Sessions in the Database
Posted by admin in Rails, Ruby on Rails, Sessions on August 25, 2011
We generally use cookie based session storage technique.Storing sessions in the database in however very important.
Rails provide an built-in feature using rake to create session table .
- Create Migration
$ rake db:sessions:create
The above command will create the migration required for session table.
now , using
