class Object
Public Instance Methods
fetch_entry(key, options=nil) { || ... }
click to toggle source
# File lib/active_support/cache/libmemcached_local_store.rb, line 7 def fetch_entry(key, options=nil) @data.fetch(key) { @data[key] = yield } end