method
new
v6.0.0 -
Show latest stable
- Class:
ActionDispatch::Session::CacheStore
new(app, options = {})public
No documentation available.
# File actionpack/lib/action_dispatch/middleware/session/cache_store.rb, line 16
def initialize(app, options = {})
@cache = options[:cache] || Rails.cache
options[:expire_after] ||= @cache.options[:expires_in]
super
end