|
|
|
|
|
by Consultant32452
3901 days ago
|
|
Let's say you have a REST request come in. In order to fulfill that request you need to make 10 REST requests of your own to various back-end systems. If you can make some of those requests asynchronously you'll greatly reduce your response time. While I suppose you could mangle your way through it multi-process, it seems like a bastardization of the model. |
|
Python threads are real threads, and things like blocking socket IO does not block Python execution in other threads.