module AnyCache::Adapters::ActiveSupportMemoryStore::Fetching

@api private @since 0.1.0

Public Instance Methods

fetch_entry(key) click to toggle source

@param key [String] @return [NilClass, ActiveSupport::Cache::Entry]

@api private @since 0.1.0

# File lib/any_cache/adapters/active_support_memory_store/fetching.rb, line 12
def fetch_entry(key)
  driver.instance_eval { read_entry(key, {}) }
end