cache = $this->getDI()->get('cache'); $this->redis = $this->cache->getRedis(); } public function addItem($courseId) { $key = $this->getSyncKey(); $this->redis->sAdd($key, $courseId); $this->redis->expire($key, $this->lifetime); } public function getSyncKey() { return 'course_cache_sync'; } }