query for statistics are now executed by poller

This commit is contained in:
Paolo Tacconi
2014-10-02 13:43:48 +02:00
parent 9cebe8ccf0
commit 15c1529e83
3 changed files with 89 additions and 49 deletions

View File

@@ -149,6 +149,13 @@ function poller_run($argv, $argc){
update_birthdays();
//update statistics in config
require_once('include/statistics_fns.php');
update_channels_total_stat();
update_channels_active_halfyear_stat();
update_channels_active_monthly_stat();
update_local_posts_stat();
// expire any read notifications over a month old
q("delete from notify where seen = 1 and date < UTC_TIMESTAMP() - INTERVAL 30 DAY");