Hi,
I am trying to store the session in db and i followed these steps
a.) rake db:session:create
b.) db migrate --> this created the table. I see the table in the db
now.
c.) Uncommented the ActionController::Base.session_store
= :active_record_store line in session_store.rb file in initializers.
I get no records in the db and also - if i do debug session — i see
no id. ANy ideas what i could be missing? I recently switched to 2.3.3
and this is the first time i am trying to set up an activerecord
session table in it.
D