From: Andrew Dolgov Date: Tue, 15 May 2007 06:02:35 +0000 (+0100) Subject: lower max article cache size (30 to 20) X-Git-Tag: schema_freeze_for_1.2.11~52 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=7289eacf91a2082bdc42123e0b81031a8b380f4c;p=tt-rss.git lower max article cache size (30 to 20) --- diff --git a/viewfeed.js b/viewfeed.js index 7435db07..91b04268 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -810,7 +810,7 @@ function cache_check(id) { } function cache_expire() { - while (article_cache.length > 30) { + while (article_cache.length > 20) { article_cache.shift(); } }