Disable APC cache clearing on SaaS

This commit is contained in:
Albert Santoni 2014-07-02 12:49:37 -04:00
parent 523bb8e7b6
commit 54fdb34fc4

View file

@ -38,7 +38,8 @@ class Cache
public static function clear() public static function clear()
{ {
apc_clear_cache('user'); // Disabled on SaaS
apc_clear_cache(); // apc_clear_cache('user');
// apc_clear_cache();
} }
} }