I am trying out Quart with Hypercorn in Python 3.8. From what I understand, Quart is typically used for single threaded applications. But I see that Hypercorn has a --workers option to run the app.
workers      w, --workers      The number of workers to spawn and use.
How can a single threaded app benefit from using multiple workers?
 
    