method

new

new(app, options = {})
public

No documentation available.

# File actionpack/lib/action_dispatch/middleware/session/cache_store.rb, line 27
      def initialize(app, options = {})
        @cache = options[:cache] || Rails.cache
        options[:expire_after] ||= @cache.options[:expires_in]
        @check_collisions = options[:check_collisions] || false
        super
      end