All Questions
2 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 ...
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 ...