aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-11-04 22:24:05 +0100
committercedricbonhomme <devnull@localhost>2010-11-04 22:24:05 +0100
commitf6477cfceeb7fa9400ba76a0c9f22c7703c2d7a5 (patch)
treeeeff9a799e50028fa7f8021b14fbaf034878d4ee /pyAggr3g470r.py
parentMajor improvement of the performance (concerning the management page). (diff)
downloadnewspipe-f6477cfceeb7fa9400ba76a0c9f22c7703c2d7a5.tar.gz
newspipe-f6477cfceeb7fa9400ba76a0c9f22c7703c2d7a5.tar.bz2
newspipe-f6477cfceeb7fa9400ba76a0c9f22c7703c2d7a5.zip
Improvement of the performance (concerning the load of articles from data base in memory).
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index e8525526..be2e796c 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -1095,7 +1095,10 @@ class Root:
with the database.
Called when a changes in the database is detected.
"""
- self.articles, self.feeds = utils.load_feed()
+ self.articles, self.feeds, \
+ self.nb_articles, self.nb_unread_articles, \
+ self.nb_favorites, self.nb_mail_notifications = utils.load_feed()
+ """
self.nb_articles = sum([feed[0] for feed in self.feeds.values()])
self.nb_unread_articles = sum([feed[1] for feed in self.feeds.values()])
self.nb_mail_notifications = len([feed for feed in self.feeds.values() \
@@ -1103,6 +1106,7 @@ class Root:
self.nb_favorites = sum([len([article for article in self.articles[feed_id] \
if article[7] == "1"]) \
for feed_id in self.feeds.keys()])
+ """
if self.articles != {}:
print "Base (%s) loaded" % utils.sqlite_base
else:
bgstack15