On Fri, Oct 7, 2011 at 3:11 PM, TINO THOMAS <[email protected]> wrote: > Thank you Henrik for your help. > I have already given the following entry in settings.py for python-memcached > binding > > CACHES = { > 'default': { > 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', > 'LOCATION': '127.0.0.1:11211', > } > } > > What should i do next , if i want to get a pers-site cache? . Sorry i am a > newbie in this. >
Have you told Django to cache using a per-site cache, as explicitly described in the documentation? https://docs.djangoproject.com/en/1.3/topics/cache/#the-per-site-cache Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

