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? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -