1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 10:05:58 +00:00

cache_expire: separate TTL for various kinds of cached objects

This commit is contained in:
Andrew Dolgov
2009-02-02 16:58:02 +03:00
parent 3e2937fc21
commit e0999d95c3

View File

@@ -1583,7 +1583,10 @@ function cache_expire() {
var date = new Date();
var ts = Math.round(date.getTime() / 1000);
db.execute("DELETE FROM cache WHERE added < ? - 600", [ts]);
db.execute("DELETE FROM cache WHERE added < ? - 1800 AND id LIKE 'FEEDLIST'", [ts]);
db.execute("DELETE FROM cache WHERE added < ? - 600 AND (id LIKE 'F:%' OR id LIKE 'C:%')", [ts]);
db.execute("DELETE FROM cache WHERE added < ? - 86400", [ts]);
} else {
while (article_cache.length > 25) {