well what i want to know is does the gateway spawns a new thread for every client connection, or it has a limited pool of threads.
On Sep 29, 8:11 pm, Norman Rasmussen <[email protected]> wrote: > On Wed, Sep 29, 2010 at 2:32 PM, raghav agarwal > <[email protected]>wrote: > > > want to know whether PyYIMt uses Non-blocking IO > > yes and no. The IO is blocking, but select is used to know if the socket is > ready for writing, so that it only writes if there's space. > > -- > - Norman Rasmussen > - Email: [email protected] > - Home page:http://norman.rasmussen.co.za/ -- You received this message because you are subscribed to the Google Groups "py-transports" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/py-transports?hl=en.
