module ActiveSupport::Cache::Strategy::LocalCache

def with_local_cache(&block)

Use a local cache for the duration of block.
def with_local_cache(&block)
  use_temporary_local_cache(LocalStore.new, &block)
end