how can we have a Rails application without a session expiring automatically within specific period of time.
Or if the question can't bring a clear picture, is it okay to just delete the the line expire_after: 3.day,
from
config.middleware.use(
ActionDispatch::Session::CookieStore,
key: '_myApp_session',
expire_after: 3.day,
serializer: :json
)
not to expires the session automatically?
Thanks in advance