I play with Django web framework for most web stuff, and the default template system doesnt support flushing.
As in since its a MVC framework, all computations are done before it starts to parse the templates…
Say I have a page that takes 1 seconds to generate on the server. The browser is doing nothing during that 1 second.
If I can somehow flush this portion instantly
[code]
[/code]And the rest after all the computations, DB queries, etc are completed… does this mean that during that 1 second wait time, the stylesheet and javascript is already downloaded and will not block anymore once the rest has arrived?
I have some javascript and css which needs to be used on all pages…[hr]
to be more specific… will it work if i have the
</body>
after the flush?