call(env) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache/strategy/local_cache_middleware.rb, line 25 def call(env) LocalCacheRegistry.set_cache_for(local_cache_key, LocalStore.new) response = @app.call(env) response[2] = ::Rack::BodyProxy.new(response[2]) do LocalCacheRegistry.set_cache_for(local_cache_key, nil) end cleanup_on_body_close = true response rescue Rack::Utils::InvalidParameterError [400, {}, []] ensure LocalCacheRegistry.set_cache_for(local_cache_key, nil) unless cleanup_on_body_close end
Register or log in to add new notes.