From bd33036fae4ec9e1e77328c4fef56b927005d74f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 19 Sep 2011 22:17:40 -0400 Subject: [PATCH] use a dummy notice stream for retweets_of_me under high load --- actions/apitimelineretweetsofme.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php index 03137e7a9a..d01db87b93 100644 --- a/actions/apitimelineretweetsofme.php +++ b/actions/apitimelineretweetsofme.php @@ -115,7 +115,15 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction array('nickname' => $this->auth_user->nickname) ); - $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id); + // This is a really bad query for some reason + + if (!common_config('performance', 'high')) { + $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id); + } else { + $strm = new Notice(); + $strm->whereAdd('0 = 1'); + $strm->find(); + } switch ($this->format) { case 'xml':