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.