asyncio and coroutines vs task queues
问题 I've been reading about asyncio module in python 3, and more broadly about coroutines in python, and I can't get what makes asyncio such a great tool. I have the feeling that all you can do with coroutines, you can do it better by using task queues based of the multiprocessing module (celery for example). Are there usecases where coroutines are better than task queues ? 回答1: Not a proper answer, but a list of hints that could not fit into a comment: You are mentioning the multiprocessing