Fixed Upgrade caching bugs

This commit is contained in:
Albert Santoni 2014-07-02 12:30:52 -04:00
parent 9de92a87a4
commit 728fccc2fe
3 changed files with 33 additions and 15 deletions

View file

@ -29,4 +29,10 @@ class Cache
$cacheKey = self::createCacheKey($key, $isUserValue, $userId);
return apc_fetch($cacheKey);
}
public static function clear()
{
apc_clear_cache('user');
apc_clear_cache();
}
}