Django - Async Django
Consider this async Django view:
What occurs when multiple clients access this view at the same time?
async def wait_view(request):
await asyncio.sleep(2)
return HttpResponse('Finished')What occurs when multiple clients access this view at the same time?
