1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 03:01:29 +00:00

lower max article cache size (30 to 20)

This commit is contained in:
Andrew Dolgov
2007-05-15 07:02:35 +01:00
parent 3de0261a53
commit 7289eacf91

View File

@@ -810,7 +810,7 @@ function cache_check(id) {
}
function cache_expire() {
while (article_cache.length > 30) {
while (article_cache.length > 20) {
article_cache.shift();
}
}