Class: ActionDispatch::Session::MemCacheStore

Inherits:
Rack::Session::Dalli
  • Object
show all
Includes:
Compatibility, SessionObject, StaleSessionCheck
Defined in:
actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb

Instance Method Summary collapse

Methods included from SessionObject

#loaded_session?, #prepare_session

Methods included from StaleSessionCheck

#extract_session_id, #load_session, #stale_session_check!

Methods included from Compatibility

#generate_sid

Constructor Details

#initialize(app, options = {}) ⇒ MemCacheStore

Returns a new instance of MemCacheStore.



16
17
18
19
# File 'actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb', line 16

def initialize(app, options = {})
  options[:expire_after] ||= options[:expires]
  super
end