From: Andrew Dolgov Date: Fri, 16 Jan 2009 09:52:53 +0000 (+0100) Subject: feedbrowser cache: limit the amount of data cached X-Git-Tag: 1.3.0~162 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=6f483f5f578601c1813aa203161af2d694820cc1;p=tt-rss.git feedbrowser cache: limit the amount of data cached --- diff --git a/functions.php b/functions.php index 47335688..df5c05d1 100644 --- a/functions.php +++ b/functions.php @@ -5910,7 +5910,7 @@ FROM ttrss_feeds WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf WHERE tf.feed_url = ttrss_feeds.feed_url AND (private IS true OR feed_url LIKE '%:%@%/%')) - GROUP BY feed_url ORDER BY subscribers DESC"); + GROUP BY feed_url ORDER BY subscribers DESC LIMIT 200"); db_query($link, "BEGIN");