Changes between Version 3 and Version 4 of Ticket #32850
- Timestamp:
- Jun 15, 2021, 8:31:22 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32850 – Description
v3 v4 1 The [https://docs.djangoproject.com/en/3.2/ref/contrib/sitemaps/#django.contrib.sitemaps.Sitemap.items Sitemap.items()] method might get called several times (if you generate them in batch, not during the http-request).1 The [https://docs.djangoproject.com/en/3.2/ref/contrib/sitemaps/#django.contrib.sitemaps.Sitemap.items Sitemap.items()] method might get called several times (if you generate several pages in batch) 2 2 3 3 This is confusing and might waste computation resources. … … 13 13 }}} 14 14 15 {{{ 16 @property 17 def paginator(self): 18 return paginator.Paginator(self.items(), self.limit) 19 20 }}} 21 15 22 I see two options now: 16 23