diff options
author | Dan McGee <dan@archlinux.org> | 2012-09-30 01:51:49 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-09-30 01:51:49 -0500 |
commit | 9b373c43aff6b9109ba813fcbcf40c7ac5521b04 (patch) | |
tree | 884add8771db8627d2d60bf4bf637e7bd758a00c /sitemaps.py | |
parent | d127ebf0c9303886e326577e0a91565b654e133d (diff) |
Optimize packages sitemap generation
* Select arch and repo related models as we need the name off each
* Only select the fields we actually need from the database
* Exclude [staging] packages
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'sitemaps.py')
-rw-r--r-- | sitemaps.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sitemaps.py b/sitemaps.py index b53c990b..bce3e005 100644 --- a/sitemaps.py +++ b/sitemaps.py @@ -13,7 +13,8 @@ class PackagesSitemap(Sitemap): priority = "0.5" def items(self): - return Package.objects.all().order_by() + return Package.objects.normal().filter(repo__staging=False).only( + 'pkgname', 'last_update', 'repo__name', 'arch__name').order_by() def lastmod(self, obj): return obj.last_update |