fix: file_cache 문제 추가 수정

This commit is contained in:
2024-05-22 16:47:20 +00:00
parent 3470817e9e
commit 68cd61d86e
2 changed files with 9 additions and 1 deletions
+5 -1
View File
@@ -55,7 +55,11 @@ class GetCachedMap extends \sammo\BaseAPI
return 'cache 불가';
}
$storage = new \Nette\Caching\Storages\FileStorage('data/file_cache');
$absolutePath = realpath('data/file_cache');
if (!$absolutePath) {
return 'cache 불가';
}
$storage = new \Nette\Caching\Storages\FileStorage($absolutePath);
$cache = new Cache($storage);
$now = TimeUtil::nowDateTimeImmutable();
+4
View File
@@ -288,6 +288,10 @@ class GetConst extends \sammo\BaseAPI
if (!prepareDir($cacheDir)) {
throw new RuntimeException('cache 폴더 없음');
}
$absolutePath = realpath($cacheDir);
if (!$absolutePath) {
throw new RuntimeException('cache 폴더 없음');
}
$storage = new \Nette\Caching\Storages\FileStorage($cacheDir);
$cache = new Cache($storage);