Anyway to improve my gzip PHP method?
- by Joe
I Gzip my pages currently like so:
<?php
ob_start("ob_gzhandler");
//my page content
ob_flush();
?>
However, I read a comment somewhere, earlier on, that this method uses a lot of memory, and I know that my website has been using a lot of memory on my virtual private server, so I thought it would be nice if I knew a way to…