1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 22:45:57 +00:00

enable cache of feedlist data

This commit is contained in:
Andrew Dolgov
2009-02-02 15:14:34 +03:00
parent fb456d28f2
commit 31234407bf
3 changed files with 38 additions and 5 deletions

View File

@@ -510,7 +510,14 @@ function init_second_stage() {
daemon_refresh_only = getInitParam("daemon_refresh_only") == 1;
feeds_sort_by_unread = getInitParam("feeds_sort_by_unread") == 1;
setTimeout('updateFeedList(false, false)', 50);
var fl = cache_find("FEEDLIST");
if (fl) {
render_feedlist(fl);
request_counters();
} else {
setTimeout('updateFeedList(false, false)', 50);
}
debug("second stage ok");
@@ -1472,6 +1479,8 @@ function init_gears() {
db.execute("CREATE TABLE IF NOT EXISTS cache (id text, article text, param text, added text)");
}
cache_expire();
} catch (e) {
exception_error("init_gears", e);