Archive for category Sessions

Storing Sessions in the Database

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 .

  1. Create Migration

$ rake db:sessions:create

The above command will create the migration required for session table.

now , using

Read the rest of this entry »

1 Comment