|
|
|
|
|
by zzzeek
3345 days ago
|
|
So on that topic, a request typically has a single transaction going out to the database so within the scope of the request, has to perform its steps in serial in any case. If it needs to make several requests to web services that aren't dependent on each other, that's an area where you can get into stacking them with some kind of concurrency construct (I'd pass it into a greenlet oriented worker pool). but this is already going to be a heavy web request with multiple web service calls. |
|
Its typical because people are still in a "single thread single transaction ORM crud" model of thinking. "Its linear because thats how it is"?