Hello, I'm having a problem using the cache system with different
languages.
I have used the vary_on_cookie decorator in my view:

@vary_on_cookie
@cache_page(60 * 60 * 12)
def my_view(request):
    ...


I've even test with:
@vary_on_headers('Cookie')

and:

my_view = vary_on_headers(my_view, 'Cookie')

but not working at all. the cache doesn't difference the language.
Any idea?

Thank you.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to