If I do session[:greeting] = "Hi!"
in one controller action, for how long will I be able to refer to session[:greeting]
in other controller actions?
Until the user closes his browser?
Until a certain amount of time passes?
Also, how can I configure this value?