X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=blobdiff_plain;f=include%2Frssfuncs.php;h=4f783b7af0219c76b3a8cb7dc3d3e3fc4457bdbd;hp=d6e5a54436725e1352bc80f4ffee23efc637af1b;hb=2d9c5684394f54e62393b3b2c1b40f242fb1793a;hpb=d5e490952aae542520b6dcaf9a9297f3b8199dfc diff --git a/include/rssfuncs.php b/include/rssfuncs.php index d6e5a544..4f783b7a 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -169,6 +169,7 @@ } $nf = 0; + $bstarted = microtime(true); // For each feed, we call the feed update function. foreach ($feeds_to_update as $feed) { @@ -196,13 +197,22 @@ while ($tline = db_fetch_assoc($tmp_result)) { if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"] . " " . $tline["owner_uid"]); + $fstarted = microtime(true); $rss = update_rss_feed($tline["id"], true, false); _debug_suppress(false); + + _debug(sprintf(" %.4f (sec)", microtime(true) - $fstarted)); + ++$nf; } } } + if ($nf > 0) { + _debug(sprintf("Processed %d feeds in %.4f (sec), %.4f (sec/feed avg)", $nf, + microtime(true) - $bstarted, (microtime(true) - $bstarted) / $nf)); + } + require_once "digest.php"; // Send feed digests by email if needed.