From fce451a4f796e8ccafc9aec692cb8821c085fc97 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 Apr 2013 13:43:40 +0400 Subject: fix updating for pgsql increase default batch size remove random check between feedbrowser or update task executing --- update.php | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) (limited to 'update.php') diff --git a/update.php b/update.php index c301083f9..ce354bbae 100755 --- a/update.php +++ b/update.php @@ -184,24 +184,17 @@ _debug("warning: unable to create stampfile\n"); } - // Call to the feed batch update function - // or regenerate feedbrowser cache - - if (rand(0,100) > 30) { - update_daemon_common(); - } else { - $count = update_feedbrowser_cache(); - _debug("Feedbrowser updated, $count feeds processed."); - - purge_orphans( true); + update_daemon_common(); - $rc = cleanup_tags( 14, 50000); + $count = update_feedbrowser_cache(); + _debug("Feedbrowser updated, $count feeds processed."); - _debug("Cleaned $rc cached tags."); + purge_orphans( true); - PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op); - } + $rc = cleanup_tags( 14, 50000); + _debug("Cleaned $rc cached tags."); + PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", $op); } if (isset($options["cleanup-tags"])) { -- cgit v1.2.3-54-g00ecf