I am using the Quart framework, but I also need to use the RabbitMQ Pika connector, but I can’t get them to play nice as they both have infinite loops. Entrypoint: Service Class: The code isn’t even getting to the print(‘Thread created…’) and I don’t understand. From this question I do understand that RabbitMQ isn’t thread-safe, but I don’t understand
Tag: quart
How can a Quart app benefit from using multiple workers?
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. How can a single threaded app benefit from using multiple workers? Answer Each worker is a separate process which means that there are multiple Quart