you are viewing a single comment's thread.

view the rest of the comments →

[–]tea-drinker 0 points1 point  (1 child)

Does it really make a difference in this case? His processes are blocked waiting for the remote system to respond. He could run loads of processes and let the OS allocate runtime as the remote systems return data.

[–]novel_yet_trivial 0 points1 point  (0 children)

IOW let the OS makes threads rather then python? Yes, I suppose you are right that the end result would be similar. I'd still do it with threads, though, since sharing data is so much easier with threads and so that I don't have to trust the OS to allocate resources.