From: Andrew Dolgov Date: Sat, 17 Jan 2009 18:42:02 +0000 (+0100) Subject: getLabelCounters: skip processing when labels are disabled; misc performance tweaks X-Git-Tag: 1.3.0~108 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=abd9b16507fd517dc56af1be0d11d7043063ddc5;p=tt-rss.git getLabelCounters: skip processing when labels are disabled; misc performance tweaks --- diff --git a/backend.php b/backend.php index 210de06f..3e6eea66 100644 --- a/backend.php +++ b/backend.php @@ -358,7 +358,7 @@ // } if (get_pref($link, 'COMBINED_DISPLAY_MODE') || $subop || - time() - $_SESSION["viewfeed:counters_stamp"] > 30) { + time() - $_SESSION["viewfeed:counters_stamp"] > 60) { if (!$offset) { print ""; getAllCounters($link, $omode, $feed); diff --git a/functions.php b/functions.php index c738ebe6..a47e0218 100644 --- a/functions.php +++ b/functions.php @@ -2678,47 +2678,49 @@ $ret_arr["-3"]["description"] = __("Fresh articles"); } + if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) { - $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM - ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description"); + $result = db_query($link, "SELECT owner_uid,id,sql_exp,description FROM + ttrss_labels WHERE owner_uid = ".$_SESSION["uid"]." ORDER by description"); + + while ($line = db_fetch_assoc($result)) { - while ($line = db_fetch_assoc($result)) { - - $id = -$line["id"] - 11; - - $label_name = $line["description"]; - - error_reporting (0); - - $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds - WHERE (" . $line["sql_exp"] . ") AND unread = true AND - ttrss_feeds.hidden = false AND - $age_qpart AND - ttrss_user_entries.feed_id = ttrss_feeds.id AND - ttrss_user_entries.ref_id = ttrss_entries.id AND - ttrss_user_entries.owner_uid = ".$_SESSION["uid"]); - - $count = db_fetch_result($tmp_result, 0, "count"); - - if (!$smart_mode || $old_counters[$id] != $count) { - $old_counters[$id] = $count; - $lctrs_modified = true; - if (!$ret_mode) { - - if (get_pref($link, 'EXTENDED_FEEDLIST')) { - $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + $id = -$line["id"] - 11; + + $label_name = $line["description"]; + + error_reporting (0); + + $tmp_result = db_query($link, "SELECT count(ttrss_entries.id) as count FROM ttrss_user_entries,ttrss_entries,ttrss_feeds + WHERE (" . $line["sql_exp"] . ") AND unread = true AND + ttrss_feeds.hidden = false AND + $age_qpart AND + ttrss_user_entries.feed_id = ttrss_feeds.id AND + ttrss_user_entries.ref_id = ttrss_entries.id AND + ttrss_user_entries.owner_uid = ".$_SESSION["uid"]); + + $count = db_fetch_result($tmp_result, 0, "count"); + + if (!$smart_mode || $old_counters[$id] != $count) { + $old_counters[$id] = $count; + $lctrs_modified = true; + if (!$ret_mode) { + + if (get_pref($link, 'EXTENDED_FEEDLIST')) { + $xmsg_part = "xmsg=\"(" . getFeedArticles($link, $id) . " total)\""; + } else { + $xmsg_part = ""; + } + + print ""; } else { - $xmsg_part = ""; + $ret_arr[$id]["counter"] = $count; + $ret_arr[$id]["description"] = $label_name; } - - print ""; - } else { - $ret_arr[$id]["counter"] = $count; - $ret_arr[$id]["description"] = $label_name; } + + error_reporting (DEFAULT_ERROR_LEVEL); } - - error_reporting (DEFAULT_ERROR_LEVEL); } if ($smart_mode && $lctrs_modified) {