Re: [pylons-discuss] waitress: can not see the 4 default threads

2019-07-19 Thread Bert JW Regeer
> On Jul 19, 2019, at 02:18, Philip May wrote: > > Yes. I did confuse processes and threads... > Sorry for that. > > Do you know why they use threads instead of tasks (processes)? Because in most cases IO waiting time (through asyncore) is going to be the overwhelming amount of time, and so

Re: [pylons-discuss] waitress: can not see the 4 default threads

2019-07-19 Thread Jonathan Vanasco
On Thursday, July 18, 2019 at 6:52:23 PM UTC-4, Michael Merickel wrote: > > processes != threads > ack! yes! sorry! -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an e

Re: [pylons-discuss] waitress: can not see the 4 default threads

2019-07-19 Thread Philip May
Yes. I did confuse processes and threads... Sorry for that. Do you know why they use threads instead of tasks (processes)? I mean threads do not work in parallel (GIL-Problem) in python. But the problem of a web container is IO bound in most cases I guess. Am Freitag, 19. Juli 2019 00:52:23 UTC