diff options
author | friendica <info@friendica.com> | 2012-01-02 16:54:37 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-02 16:54:37 -0800 |
commit | 4c35a6b0d7e2f2431571d63888816ecff446d258 (patch) | |
tree | 88d274219b2cc3e04d213837ce464082579db67b /mod/profile.php | |
parent | f1ee5f48d4a0bb2f293c6c9a38ba71cbeb9d14fa (diff) | |
download | volse-hubzilla-4c35a6b0d7e2f2431571d63888816ecff446d258.tar.gz volse-hubzilla-4c35a6b0d7e2f2431571d63888816ecff446d258.tar.bz2 volse-hubzilla-4c35a6b0d7e2f2431571d63888816ecff446d258.zip |
conversation sql optimisations
Diffstat (limited to 'mod/profile.php')
-rw-r--r-- | mod/profile.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mod/profile.php b/mod/profile.php index 946499895..90a609d03 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -167,7 +167,7 @@ function profile_content(&$a, $update = 0) { $r = q("SELECT distinct(parent) AS `item_id`, `contact`.`uid` AS `contact-uid` FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0 - and `item`.`parent` in (select parent from item where unseen = 1 ) + and `item`.`unseen` = 1 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `item`.`wall` = 1 $sql_extra @@ -218,18 +218,19 @@ function profile_content(&$a, $update = 0) { `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` - FROM `item`, (SELECT `p`.`id`,`p`.`created` FROM `item` AS `p` WHERE `p`.`parent` = `p`.`id`) AS `parentitem`, `contact` + FROM `item`, `contact` WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0 AND `contact`.`id` = `item`.`contact-id` AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 - AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s ) - $sql_extra - ORDER BY `parentitem`.`created` DESC, `gravity` ASC, `item`.`created` ASC ", + AND `item`.`parent` IN ( %s ) + $sql_extra ", intval($a->profile['profile_uid']), dbesc($parents_str) ); } + $items = conv_sort($items,'created'); + if($is_owner && ! $update) { $o .= get_birthdays(); $o .= get_events(); |