I read here that Django querysets are lazy, it won\'t be evaluated until it is actually printed. I have made a simple pagination using the django\'s built-in pagination. I d
It is. Django's pagination uses the same rules/optimizations that apply to querysets.
This means it will start evaluating on return HttpResponse(output)
return HttpResponse(output)