method
fetch_entry
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::Cache::Strategy::LocalCache::LocalStore
fetch_entry(key)public
No documentation available.
# File activesupport/lib/active_support/cache/strategy/local_cache.rb, line 61
def fetch_entry(key) # :nodoc:
@data.fetch(key) { @data[key] = yield }
end