Hi,
In rails 2.3, I changed session store from cookies to active_record. I compared session.inspect between the two stores. In cookie_store, it showed a lot of info but in active_record_store it showed nothing(just {}).
My main concert is session_id. You can't get session[:session_id] in active_record_store. Is this right behavior? Do I have to see session differently according to session store option?
Sam