123456789_123456789_123456789_123456789_123456789_

Module: ActiveSupport::Cache::MemCacheStore::DupLocalCache

Relationships & Source Files
Namespace Children
Classes:
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: activesupport/lib/active_support/cache/mem_cache_store.rb

Instance Method Summary

Instance Method Details

#local_cache (private)

[ GitHub ]

  
# 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