Thank you Weedpacket.
I don't follow you on "not setting up something special"...? Does that mean it is installed but with default values or do I have to do something with the code itself?
I used this:
ob_start()
while...
echo"text<br>"
}
ob_end_flush()
..which I had pulled from the same link you gave me.
If it is installed, why would my benchmark be twice as slow? Low RAM on the server?
The output buffering I am attempting is for a nightly cron that dumps 10k records into another table. There's not really a major concern with how soon it finishes so I wasn't sure if I should do an insert low priority and let it chip away in the background or use OB and try to finish quickly. All of the tutes I read said OB was good for updating a lof of records at once (with LOCK TABLE) so I was heading in that direction.
As for the compression; I would say that I am outputting out a lot of data. Some pages have a lot of images and text; running a lot of queries on top of that. Hence my longing to just use hourly "snapshots" of certain pages. Would TIDY work for that?
Thanks again.