clearCacheByPrefix(CacheKeys::ADMISSION_CAMPAIGNS_PREFIX->value.'*'); $this->clearCacheByPrefix(CacheKeys::DIRECTION_STUDIES->value.'*'); $this->clearCacheByPrefix(CacheKeys::ADMISSION_PLANS->value.'*'); $this->clearCacheByPrefix(CacheKeys::EDUCATION_PROGRAM_PREFIX->value.'*'); $this->clearCacheByPrefix('education_'.'*'); } public function getCachedData(string $key) { return Cache::get($key); } public function cacheData(string $key, $data, int $ttl = null): void { Cache::put($key, $data, $ttl ?? self::DEFAULT_TTL); } }