9 Sep
2002
9 Sep
'02
11:53 a.m.
On Monday 09 Sep 2002 12:43 pm, Sebastian Lühnsdorf wrote:
hi!
we have a problem with a project where zope retrieves web pages from another http server using httplib. the problem is, that at least in some cases Zope freezes until a request is completed (the whole process, all threads). we believe it could be a problem with the threads, however we have no approach to solve this problem. here are the infos:
It might be a dumb suggestion, but are you sure that it is not just processing four such requests concurrently? the publisher thread will remain blocked until your httplib request completes or times out, even if its client browser has disconnected. (four by default, or whatever number of publisher threads you are running.)