method

local_cache

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