aboutsummaryrefslogtreecommitdiffstats
path: root/include/poller.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-15 02:33:35 -0700
committerfriendica <info@friendica.com>2013-10-15 02:33:35 -0700
commit66f427db5ea1c27f247ed329521695bc34a8fdd6 (patch)
treec3aa8531ccccd406dc3de564f6a7bb9d52b82da4 /include/poller.php
parent89378fb12ab0be501a6fae23fd23a9a097742125 (diff)
downloadvolse-hubzilla-66f427db5ea1c27f247ed329521695bc34a8fdd6.tar.gz
volse-hubzilla-66f427db5ea1c27f247ed329521695bc34a8fdd6.tar.bz2
volse-hubzilla-66f427db5ea1c27f247ed329521695bc34a8fdd6.zip
directory sync optimisations to save redundant processing
Diffstat (limited to 'include/poller.php')
-rw-r--r--include/poller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php
index 48959fe61..94ca99e54 100644
--- a/include/poller.php
+++ b/include/poller.php
@@ -242,7 +242,7 @@ function poller_run($argv, $argc){
}
if($dirmode == DIRECTORY_MODE_SECONDARY || $dirmode == DIRECTORY_MODE_PRIMARY) {
- $r = q("select * from updates where not ( ud_flags & %d ) and ud_addr != '' and ( ud_last = '0000-00-00 00:00:00' OR ud_last > UTC_TIMESTAMP() - INTERVAL 7 DAY ) ",
+ $r = q("select distinct ud_addr, updates.* from updates where not ( ud_flags & %d ) and ud_addr != '' and ( ud_last = '0000-00-00 00:00:00' OR ud_last > UTC_TIMESTAMP() - INTERVAL 7 DAY ) group by ud_addr ",
intval(UPDATE_FLAGS_UPDATED)
);
if($r) {