Hacker News new | ask | show | jobs
by zach_garwood 1249 days ago
All my personal projects are using WSGI because I haven't had time ro sit down and read about ASGI yet. What are the biggest differences?
1 comments

ASGI is a newer spec that uses async for everything (what is not really a great ideia if you is not IO bounded), so you can process more than one request at a time with ASGI if you are IO bounded, but have more overhead (a lot more) than WSGI in non IO bounded work