X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FCore%2FCache.php;h=05ccdd4feca7e07febc8245ac9ae2296906832d2;hb=f04d40a37eb36e903433478d671a9dcd5bb6aacb;hp=0d3c2ebe9348d0f433b43f7e926792c74b5fe24e;hpb=5fc492776436dd06d46b1a8936a3f19cc96abbcf;p=friendica.git diff --git a/src/Core/Cache.php b/src/Core/Cache.php index 0d3c2ebe93..05ccdd4fec 100644 --- a/src/Core/Cache.php +++ b/src/Core/Cache.php @@ -146,8 +146,8 @@ class Cache $memcache->set(get_app()->get_hostname().":".$key, serialize($value), MEMCACHE_COMPRESSED, self::duration($duration)); return; } - $fields = array('v' => serialize($value), 'expire_mode' => $duration, 'updated' => datetime_convert()); - $condition = array('k' => $key); + $fields = ['v' => serialize($value), 'expire_mode' => $duration, 'updated' => datetime_convert()]; + $condition = ['k' => $key]; dba::update('cache', $fields, $condition, true); } @@ -163,68 +163,68 @@ class Cache // Clear long lasting cache entries only once a day if (Config::get("system", "cache_cleared_day") < time() - self::duration(CACHE_DAY)) { if ($max_level == CACHE_MONTH) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 30 days"), - CACHE_MONTH); + CACHE_MONTH]; dba::delete('cache', $condition); } if ($max_level <= CACHE_WEEK) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 7 days"), - CACHE_WEEK); + CACHE_WEEK]; dba::delete('cache', $condition); } if ($max_level <= CACHE_DAY) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 1 days"), - CACHE_DAY); + CACHE_DAY]; dba::delete('cache', $condition); } Config::set("system", "cache_cleared_day", time()); } if (($max_level <= CACHE_HOUR) && (Config::get("system", "cache_cleared_hour")) < time() - self::duration(CACHE_HOUR)) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 1 hours"), - CACHE_HOUR); + CACHE_HOUR]; dba::delete('cache', $condition); Config::set("system", "cache_cleared_hour", time()); } if (($max_level <= CACHE_HALF_HOUR) && (Config::get("system", "cache_cleared_half_hour")) < time() - self::duration(CACHE_HALF_HOUR)) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 30 minutes"), - CACHE_HALF_HOUR); + CACHE_HALF_HOUR]; dba::delete('cache', $condition); Config::set("system", "cache_cleared_half_hour", time()); } if (($max_level <= CACHE_QUARTER_HOUR) && (Config::get("system", "cache_cleared_quarter_hour")) < time() - self::duration(CACHE_QUARTER_HOUR)) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 15 minutes"), - CACHE_QUARTER_HOUR); + CACHE_QUARTER_HOUR]; dba::delete('cache', $condition); Config::set("system", "cache_cleared_quarter_hour", time()); } if (($max_level <= CACHE_FIVE_MINUTES) && (Config::get("system", "cache_cleared_five_minute")) < time() - self::duration(CACHE_FIVE_MINUTES)) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 5 minutes"), - CACHE_FIVE_MINUTES); + CACHE_FIVE_MINUTES]; dba::delete('cache', $condition); Config::set("system", "cache_cleared_five_minute", time()); } if (($max_level <= CACHE_MINUTE) && (Config::get("system", "cache_cleared_minute")) < time() - self::duration(CACHE_MINUTE)) { - $condition = array("`updated` < ? AND `expire_mode` = ?", + $condition = ["`updated` < ? AND `expire_mode` = ?", datetime_convert('UTC', 'UTC', "now - 1 minutes"), - CACHE_MINUTE); + CACHE_MINUTE]; dba::delete('cache', $condition); Config::set("system", "cache_cleared_minute", time());