[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: threaded http server

Christian Heimes

2/20/2008 1:52:00 PM

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