Hello everybody
We use FastTemplate to manipulate HTML tepmlates. We need to measure the performance of our scripts and we see that we spent lots of time just for the instruction
$tpl->FastPrint(FINAL); (that is just a print of all the content that PHP have gathered form SQL queries and lots of PHP code). Actually this time is large when the internet connection is rather slow, so we assume that there is a buffer where PHP places the content or a portion of it when the buffer is not big enough, only when the client browser empty the buffer by getting the content PHP put there the next portion of content. Is that correct (in general)?? If yes how can we enlarge that buffer?? Or better is there any version of FastTemplate that prints the content step by step, not all at once??
Thank you for your time