Class: ActiveSupport::Cache::Strategy::LocalCache::Middleware

Inherits:
Object
  • Object
show all
Defined in:
lib/active_support/cache/strategy/local_cache_middleware.rb

Overview

– This class wraps up local storage for middlewares. Only the middleware method should construct them.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, local_cache_key) ⇒ Middleware

Returns a new instance of Middleware.



13
14
15
16
17
# File 'lib/active_support/cache/strategy/local_cache_middleware.rb', line 13

def initialize(name, local_cache_key)
  @name             = name
  @local_cache_key = local_cache_key
  @app              = nil
end

Instance Attribute Details

#local_cache_keyObject (readonly)

:nodoc:



11
12
13
# File 'lib/active_support/cache/strategy/local_cache_middleware.rb', line 11

def local_cache_key
  @local_cache_key
end

#nameObject (readonly)

:nodoc:



11
12
13
# File 'lib/active_support/cache/strategy/local_cache_middleware.rb', line 11

def name
  @name
end

Instance Method Details

#call(env) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/active_support/cache/strategy/local_cache_middleware.rb', line 24

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
  response
rescue Exception
  LocalCacheRegistry.set_cache_for(local_cache_key, nil)
  raise
end

#new(app) ⇒ Object



19
20
21
22
# File 'lib/active_support/cache/strategy/local_cache_middleware.rb', line 19

def new(app)
  @app = app
  self
end