Re: Caching for django.contrib.sites

2014-12-15 Thread Tom McKenzie
Thanks Colin, I'll give that a try. On Sunday, December 14, 2014 11:25:57 AM UTC-8, Collin Anderson wrote: > > Hi Tom, > > It should work to set up your own sites model with the same table name, as > long as you can change all foreign keys to point to _your_ site model. > > Are you actually

Re: Caching for django.contrib.sites

2014-12-14 Thread Collin Anderson
Hi Tom, It should work to set up your own sites model with the same table name, as long as you can change all foreign keys to point to _your_ site model. Are you actually using more than one site? Collin On Friday, December 12, 2014 7:57:21 PM UTC-5, Tom McKenzie wrote: > > Hello All > > Is

Caching for django.contrib.sites

2014-12-12 Thread Tom McKenzie
Hello All Is there a way to cache the database queries for django.contrib.sites? We are running 1.4.15 at the moment and we planning to upgrade to 1.7.x soon. Can I setup my own "custom" sites model with the same fields so I don't have to change the database table name? I have been trying