#242 cache key에 xe core 버전명을 prefix로 사용.

This commit is contained in:
bnu 2014-01-01 00:22:36 +09:00
parent 2149ed7700
commit d2365bbd09
5 changed files with 21 additions and 30 deletions

View file

@ -10,13 +10,6 @@
*/
class CacheFile extends CacheBase
{
/**
* Default valid time
* @var int
*/
var $valid_time = 36000;
/**
* Path that value to stored
* @var string
@ -56,7 +49,7 @@ class CacheFile extends CacheBase
*/
function getCacheFileName($key)
{
return $this->cache_dir . str_replace(':', '_', $key);
return $this->cache_dir . str_replace(':', '_', $key);
}
/**