When I read rails guide
http://guides.rubyonrails.org/command_line.html#tmp , I meet this
sentence rake tmp:sessions:clear clears tmp/sessions.
.
In Rails maybe there are any options to store sessions data to File
(default session store is CookieStore).
Dose anyone know a purpose of this directory?
Thank you.
On Sunday, November 9, 2014 2:28:27 PM UTC, [email protected] wrote:
When I read rails guide
http://guides.rubyonrails.org/command_line.html#tmp , I meet this
sentence rake tmp:sessions:clear clears tmp/sessions.
.
In Rails maybe there are any options to store sessions data to File
(default session store is CookieStore).
Dose anyone know a purpose of this directory?
Thank you.
Prior to the cookiestore, the default rails session store was filestore,
which uses ruby’s pstore mechanism. It was never really suitable for use
other than development, since it presumes that all of your app instances
have access to this shared storage.
Fred