In django, I wrote a view that simply returns a file, and now I am having problems because memcache is trying to cache that view, and in it\'s words, \"TypeError: can\'t pickle
from django.views.decorators.cache import never_cache @never_cache def myview(request): # ...
Documentation is here...