Anyway, to improve my gzip PHP method?
I gzip my pages now like this:
<?php
ob_start("ob_gzhandler");
//my page content
ob_flush();
?>
However, I read a comment somewhere that this method uses a lot of memory, and I know that my site uses most of the memory on my virtual private server, so I thought it would be nice if I knew a way to reduce memory usage.
I tested my site using the online gzip tester, which says that my sites send gzipped pages, so my gzip method works, but most importantly, I'm obviously looking for an option with less memory, if any.
I appreciate all the suggestions. :) Oh, and Merry Christmas, P