Django - Async Django
You wrote this async Django view:
Why might this cause performance issues?
async def cpu_task(request):
result = heavy_calculation()
return JsonResponse({'value': result})Why might this cause performance issues?
