class ActiveSupport::Cache::MemCacheStore

def read_entry(key, options)

Read an entry from the cache.
def read_entry(key, options)
  rescue_error_with(nil) { deserialize_entry(@data.with { |c| c.get(key, options) }) }
end