#242 file cache 사용 시 계층형 디렉토리 구조로 배치하도록 변경.

This commit is contained in:
bnu 2014-01-01 00:41:21 +09:00
parent 21057ca527
commit e4088586d7

View file

@ -49,7 +49,7 @@ class CacheFile extends CacheBase
*/
function getCacheFileName($key)
{
return $this->cache_dir . str_replace(':', '_', $key);
return $this->cache_dir . str_replace(':', '/', $key);
}
/**