Module ActiveSupport::Cache::Strategy::LocalCache
In: lib/active_support/cache/strategy/local_cache.rb

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.

Methods

Classes and Modules

Class ActiveSupport::Cache::Strategy::LocalCache::LocalStore

Public Instance methods

Middleware class can be inserted as a Rack handler to be local cache for the duration of request.

Use a local cache for the duration of block.

[Validate]