Hi, Django's per-site cache does not take sub domains into account. I derived my own middleware to handle subdomains by modifying the key_prefix:
from django.middleware.cache import CacheMiddleware class SubdomainCacheMiddleware(CacheMiddleware): def process_request(self, request): self.key_prefix = request.META['HTTP_HOST'] super(SubdomainCacheMiddleware, self).process_request(request) But the result did not change. In other words, once for example user1.domain.com page is cached, the same page is served for user2.domain.com. What am I missing? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---