Bjoern Schliessmann wrote:

>> If that is not an option, then you are faced with a problem of
>> connecting a threaded programming model with an event based model
>> (twisted and and such).
> 
> I don't really see how threads could avoid a problem with delays in
> one connection ...

by running the database queries in one or more separate threads, you can 
still serve requests that don't hit the database (either because they're 
entirely self-contained, or because they only rely on cached data).

</F>

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

Reply via email to