The caches are now cleared only once an hour.

This commit is contained in:
Michael Vogel 2012-12-25 12:52:30 +01:00
parent bbec7a1ed9
commit 5bc6896671
2 changed files with 19 additions and 7 deletions

View File

@ -99,14 +99,26 @@ function poller_run(&$argv, &$argc){
proc_run('php','include/expire.php'); proc_run('php','include/expire.php');
} }
// clear old cache $last = get_config('system','cache_last_cleared');
Cache::clear();
// clear old item cache files if($last) {
clear_cache(); $next = $last + (3600); // Once per hour
$clear_cache = ($next <= time());
} else
$clear_cache = true;
// clear cache for photos if ($clear_cache) {
clear_cache($a->get_basepath(), $a->get_basepath()."/photo"); // clear old cache
Cache::clear();
// clear old item cache files
clear_cache();
// clear cache for photos
clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
set_config('system','cache_last_cleared', time());
}
$manual_id = 0; $manual_id = 0;
$generation = 0; $generation = 0;

View File

@ -1689,7 +1689,7 @@ div.pager, .birthday-notice, ul.tabs a, #jot-preview-link, .comment-edit-submit-
border: 1px solid lightgray; border: 1px solid lightgray;
color: black; color: black;
background: #F2F2F2; background: #F2F2F2;
padding: 3px 7px 2px 7px; padding: 2px 7px 2px 7px;
margin-top: 2px; margin-top: 2px;
margin-bottom: 2px; margin-bottom: 2px;