我有一个 Django 站点框架来创建动态工作sitemap.xml
表。
class NewsSitemap(Sitemap):
changefreq = "daily"
priority = 0.8
protocol = 'https'
def items(self):
return News.objects.all() # news objects
def lastmod(self, obj):
return obj.date_posted
def Newstitle(self, obj):
return obj.titleEnglish
def location(self,obj):
return '/news/'+ obj.country + '/' +obj.slug
服务器会根据上面的代码一天只创建一次站点地图文件吗?
如果服务器每次在不同用户访问时创建站点地图文件,由于我的数据库很大,这将需要大量的处理能力。