diff options
author | Christian Schneider | 2018-01-18 17:39:52 +0100 |
---|---|---|
committer | Christian Schneider | 2018-01-18 17:39:52 +0100 |
commit | 50485bf9d9243693514ace67e9931a6c24947333 (patch) | |
tree | dbaeef46163df5578057928cfb273b56f9c63b39 | |
parent | d9f17cbad84fc769b9e663c674a52373df48faf7 (diff) | |
download | itools-50485bf9d9243693514ace67e9931a6c24947333.tar.gz itools-50485bf9d9243693514ace67e9931a6c24947333.tar.bz2 itools-50485bf9d9243693514ace67e9931a6c24947333.zip |
Avoid all $memcache->xy() calls when $memcache is not set
-rw-r--r-- | it_cache.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_cache.class b/it_cache.class index b2e9a31..ff6dbfa 100644 --- a/it_cache.class +++ b/it_cache.class @@ -86,7 +86,7 @@ static function put($key, $value, $p = array()) $success = ($func = self::$_store_func) ? $func($key, $value, $p['ttl']) : null; if (!$success && $p['safety'] == 1) - it::error(array('title' => ($p['distributed'] ? "memcache (" . ($memcache ? $memcache->getResultMessage() : "") . " on " . $memcache->getServerByKey($key)['host'] . ")" : self::$_store_func) . " in it_cache::put failed for key '$key'", 'id' => "it_cache_put", 'graceperiod' => 300, 'timewindow' => 10)); + it::error(array('title' => ($p['distributed'] ? "memcache (" . ($memcache ? ($memcache->getResultMessage() . " on " . $memcache->getServerByKey($key)['host']) : "n/a") . ")" : self::$_store_func) . " in it_cache::put failed for key '$key'", 'id' => "it_cache_put", 'graceperiod' => 300, 'timewindow' => 10)); $GLOBALS['it_cache_local'][$key] = $value; # Also store local copy |