Simple threaded web-server based on BaseHTTPServer?

Aahz Maruch aahz at panix.com
Thu Jan 31 16:00:10 EST 2002


In article <3C59412C.1040702 at skippinet.com.au>,
Mark Hammond  <mhammond at skippinet.com.au> wrote:
>Paul Rubin wrote:
>> 
>> What happens if you use Stackless?
>
>If Stackless has microthreads that have very little overhead (which 
>implies not based on OS threads) then that would probably be a good option.

You're correct about the overhead but wrong about it being a good
option.  The problem with microthreads is that it blocks completely on
I/O, which is why the threadpool is better.
-- 
                      --- Aahz  <*>  (Copyright 2002 by aahz at pobox.com)

Hugs and backrubs -- I break Rule 6                 http://www.rahul.net/aahz/
Androgynous poly kinky vanilla queer het Pythonista   

"The more you drive, the less intelligent you are."  --_Repo Man_



More information about the Python-list mailing list