client->exists($name)) { throw new EmptyRedis($name); } return $this->client->get($name); } public function set(string $name, mixed $value, int $expirationTTL = 60 * 60 * 24): void { $this->client->set($name, $value, 'EX', $expirationTTL); } }