method
local_cache
v7.0.0 -
Show latest stable
- Class:
ActiveSupport::Cache::MemCacheStore::DupLocalCache
local_cache()private
No documentation available.
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 64
def local_cache
if ActiveSupport::Cache.format_version == 6.1
if local_cache = super
DupLocalStore.new(local_cache)
end
else
super
end
end