Does Rails provide default session time-out duration? If yes, where is it specified? -


i know how set expiry time duration in rails app, has been documented on web. want know default time duration session expiry in rails , if there one, find it?

rails doesn't have default expiration time. the method definition session_store seems have 1 default:

on line 32 @session_store = :cookie_store

by default other configurations non existent. therefore, :expire_after not set , rails' sessions don't have expiration time unless set value it.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -