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