We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Session data is stored in DB
config/initializers/session_store.rb
Rails.application.config.session_store :active_record_store
# Gemfile gem 'activerecord-session_store', github: 'rails/activerecord-session_store'
rails g active_record:session_migration rake db:migrate
which will create table 'sessions'.
as alternative we can store session data in Redis.