getCacheKey(); $value = $this->cache->get($key); if ($refresh || !$value) { $value = $this->getFromServer(); $this->cache->set($key, $value, 7100); } return $value; } }