class ActionDispatch::Session::MemCacheStore
Action Dispatch Session MemCacheStore
A session store that uses MemCache to implement storage.
Options
-
expire_after
- The length of time a session will be stored before automatically expiring.
Inherits From
-
class
Rack::
Session:: Dalli -
module
ActionDispatch::
Session:: Compatibility -
module
ActionDispatch::
Session:: StaleSessionCheck
Public class methods
Source code GitHub
# File actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb, line 28
def initialize(app, options = {})
options[:expire_after] ||= options[:expires]
super
end