When debugging/developing you want to be able to refresh your views every time you make a little change. But when in production mode you might want to cache these views because they contain long and resource hungry calculations or something.
By putting this above "hack" in after importing cache_page
you only cache the views in production mode.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from django.conf import settings
from django.views.decorators.cache import cache_page
if settings.DEBUG:
def cache_page(delay):
def rendered(view):
def inner(request, *args, **kwargs):
return view(request, *args, **kwargs)
return inner
return rendered
@cache_page(60 * 60) # 1 hour
def my_view(request):
...expensive calculation...
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
@gregb
+100 =)))
#
Please login first before commenting.