Login

vary_on_user

Author:
TAH
Posted:
April 28, 2014
Language:
Python
Version:
1.6
Score:
0 (after 1 ratings)

@vary_on_user doesn't work properly if your site uses third-party cookies, since the cache key is created from all of the cookies in the request header. This decorator caches pages based on the user ID, so it works reliably.

1
2
3
4
5
6
7
8
    def vary_on_user(view):
        @wraps(view, assigned=available_attrs(view))
        def inner_func(request, *args, **kwargs):
            request.META['HTTP_DJANGO_USERID'] = request.user.id
            response = view(request, *args, **kwargs)
            patch_vary_headers(response, ('DJANGO_USERID',))
            return response
        return inner_func

More like this

  1. find even number by Rajeev529 2 weeks, 1 day ago
  2. Form field with fixed value by roam 1 month ago
  3. New Snippet! by Antoliny0919 1 month, 1 week ago
  4. Add Toggle Switch Widget to Django Forms by OgliariNatan 4 months ago
  5. get_object_or_none by azwdevops 7 months, 3 weeks ago

Comments

Please login first before commenting.