threaded http server

Christian Heimes lists at cheimes.de
Wed Feb 20 08:51:32 EST 2008


bharath venkatesh wrote:
> hi
>    i want to create fast n efficient http server which serve multiple
> client  concurrently .. so i thought of threading the http server  using

Threads ain't efficient for IO bound problems like a HTTP server. Most
OSs have far better ways to deal with IO bound applications like
select(), poll(), epoll(), kqueue() or IOCP.

Use Twisted :)

Christian




More information about the Python-list mailing list