[Zope] slow site

Morten W. Petersen morten@src.no
Mon, 24 Apr 2000 13:28:12 +0200 (CEST)


> The site address is http://www.isd197.k12.mn.us/ Notice in particular
> the long delay while the browser is contacting the host. Everything loads
> pretty quickly once the page starts appearing.

Could this be because Zope doesn't stream its output? For example, if you
have a page; 1k big; that has a method which takes n*seconds to execute,
the server will not send the page until it's fully rendered.

I think it's a good idea to .. <dtml-call "REQUEST.flush()"> or somesuch,
in key points of the documents.

-Morten