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