Caches that implement LocalCache
will be backed by an in-memory cache for the duration of a block. Repeated calls to the cache for the same key will hit the in-memory cache for faster access.
Namespace
Class
Methods
Instance Public methods
middleware()
Middleware class can be inserted as a Rack handler to be local cache for the duration of request.
Source:
# File activesupport/lib/active_support/cache/strategy/local_cache.rb, line 89
def middleware
@middleware ||= Middleware.new(
"ActiveSupport::Cache::Strategy::LocalCache",
local_cache_key)
end