Method: ActionDispatch::Session::MemCacheStore#initialize

Defined in:
actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb

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

Returns a new instance of MemCacheStore.



28
29
30
31
# File 'actionpack/lib/action_dispatch/middleware/session/mem_cache_store.rb', line 28

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