Skip to main content

All Questions

1 vote
0 answers
889 views

Async IO switch coroutine on multiprocessing.queue.get() not ready

I am writing some code where I have 3 processes (spawned from the main). The first one is a process that uses Async IO to create 3 coroutines and switch between them. The last two processes run ...
Mattia Surricchio's user avatar
0 votes
1 answer
559 views

Python: manager.Queue() with asyncio. How to resolve deadlock?

I am trying to figure out how to have a websocket based server listen to incoming requests, place them in a queue for another process to do work, then place the results in another queue where the ...
Cody DeGhetto's user avatar