X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=update_daemon2.php;h=e8a56eec92a5396368fda7adbebc53aa2b01b563;hb=ba68b6815ab31d17cda113e7990eeb07558b02a9;hp=63f218cc4961692765ea068c209a6ecb395650db;hpb=e3b42c5a809b57bac99caa48b2fca954b7985cab;p=tt-rss.git diff --git a/update_daemon2.php b/update_daemon2.php index 63f218cc..e8a56eec 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -1,9 +1,10 @@ -#!/usr/bin/php +#!/usr/bin/env php 30) { - update_daemon_common($link); - } else { + _debug("Waiting before update [$j].."); + sleep($j*5); + $nf = update_daemon_common($link); + + if (rand(0,100) > 50) { $count = update_feedbrowser_cache($link); _debug("Feedbrowser updated, $count feeds processed."); @@ -222,10 +282,20 @@ _debug("Cleaned $rc cached tags."); + global $pluginhost; + $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op); } _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)"); - + + if ($nf > 0) { + _debug("Feeds processed: $nf"); + + if (time() - $start_timestamp > 0) { + _debug("Feeds/minute: " . sprintf("%.2d", $nf/((time()-$start_timestamp)/60))); + } + } + db_close($link); // We are in a fork. @@ -237,10 +307,6 @@ // We exit in order to avoid fork bombing. exit(0); } - - // We wait a little time before the next fork, in order to let the first fork - // mark the feeds it update : - sleep(1); } $last_checkpoint = time(); }