From: Andrew Dolgov Date: Tue, 19 Aug 2014 06:32:01 +0000 (+0400) Subject: add some timing information to update_daemon_common X-Git-Tag: 1.14~27 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=2d9c5684394f54e62393b3b2c1b40f242fb1793a add some timing information to update_daemon_common --- 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.