module ActiveSupport::Cache::Strategy::LocalCache

def read_entry(key, options) # :nodoc:

:nodoc:
def read_entry(key, options) # :nodoc:
  if cache = local_cache
    cache.fetch_entry(key) { super }
  else
    super
  end
end