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

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to