pip install django-cacheops CACHEOPS = { 'ops': { } } python from cacheops import cached @cached(timeout=3600) def get_user_by_id(user_id): return User.objects.get(id=user_id)