a bit of a late reply, sorry...
Paul Rubin schreef:
> [EMAIL PROTECTED] writes:
> > > I suspect he was trying to say that BaseHTTPServer has no mechanism for
> > > handling state. As you know, of course, this is most relevant across
> > > multiple successive connections to a server from the same
[EMAIL PROTECTED] writes:
> > I suspect he was trying to say that BaseHTTPServer has no mechanism for
> > handling state. As you know, of course, this is most relevant across
> > multiple successive connections to a server from the same client, and
> > has little to do with threads.
Usually you wo
Steve Holden schreef:
> Paul Rubin wrote:
> > [EMAIL PROTECTED] writes:
> >
> >>What it doesn't do (and what Sidd seems to search as is suggested by
> >>his 'select()' remark) is handle each client in a separate thread.
> >
> >
> > I don't know what you mean by that. It launches a new thread for
Paul Rubin wrote:
> [EMAIL PROTECTED] writes:
>
>>What it does do, is handle each request (from the same client too) in a
>>new separate thread. Convenient if your processing intensive handle may
>>otherwise slow down the main server process becoming less responsive to
>>other requests.
>>What it
[EMAIL PROTECTED] writes:
> What it does do, is handle each request (from the same client too) in a
> new separate thread. Convenient if your processing intensive handle may
> otherwise slow down the main server process becoming less responsive to
> other requests.
> What it doesn't do (and what Si
Paul Rubin schreef:
> "Sidd" <[EMAIL PROTECTED]> writes:
> >I tried finding and example of multithreaded client-serve program in
> > python. Can any one please tell me how to write a multithreaded
> > client-server programn in python such that
> > 1.It can handle multiple connections
> > 2.It
"Sidd" <[EMAIL PROTECTED]> writes:
>I tried finding and example of multithreaded client-serve program in
> python. Can any one please tell me how to write a multithreaded
> client-server programn in python such that
> 1.It can handle multiple connections
> 2.It uses actual threads and not selec
Hi,
I tried finding and example of multithreaded client-serve program in
python. Can any one please tell me how to write a multithreaded
client-server programn in python such that
1.It can handle multiple connections
2.It uses actual threads and not select() or some other function
--
http://ma