instance method
local_cache
Ruby on Rails 7.1.6
Since v7.0.10 Last seen in v7.1.6 PrivateAvailable in: v7.0.10 v7.1.6
Signature
local_cache()
No documentation comment.
Source
# File activesupport/lib/active_support/cache/mem_cache_store.rb, line 72
def local_cache
if ActiveSupport::Cache.format_version == 6.1
if local_cache = super
DupLocalStore.new(local_cache)
end
else
super
end
end
Defined in activesupport/lib/active_support/cache/mem_cache_store.rb line 72
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::MemCacheStore::DupLocalCache