From 54fdb34fc45f78c4f426cb5ec1b8f4b4c6fa8767 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Wed, 2 Jul 2014 12:49:37 -0400 Subject: [PATCH] Disable APC cache clearing on SaaS --- airtime_mvc/application/models/Cache.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/Cache.php b/airtime_mvc/application/models/Cache.php index 302c3c1cc..dbbcb9d58 100644 --- a/airtime_mvc/application/models/Cache.php +++ b/airtime_mvc/application/models/Cache.php @@ -38,7 +38,8 @@ class Cache public static function clear() { - apc_clear_cache('user'); - apc_clear_cache(); + // Disabled on SaaS + // apc_clear_cache('user'); + // apc_clear_cache(); } }