memcache gzipped content with php ob_gzhandler - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:15:52Zhttp://stackoverflow.com/feeds/question/716468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/716468/memcache-gzipped-content-with-php-obgzhandler1memcache gzipped content with php ob_gzhandlerpedalpete2009-04-04T03:56:12Z2009-04-04T23:00:21Z
<p>I recently implemented gzipping of my content with php's ob_gzhandler function which keeps things really simple. </p>
<p>I'm now trying to add this content to my memcache, and was hoping there was a simple way to do that as well, but I haven't been able to find anything online about accomplishing this. </p>
<p>I've only used memcache in the past to store data which was held in a variable,but with the ob_gzhandler, I don't have a variable with the data in it. So I unfortunately don't even know where to start with this. </p>
<p>Thanks
Pete</p>
<p>-----Edit for more information-------------------------
As Cody commented below, apparently my question was/is vague. Sorry about that, I'm trying to give as much info as possible, but am really a bit lost in this process. </p>
<p>When I've used memcache before, I have checked if the data exists in memcache based on a hash of the url request. If there was a match, i grabbed the cached data. If not, then I'd make the page and store it in the cache. </p>
<p>Now I'm trying to do the same thing, but with gzipped data using the php ob_gzhandler. </p>
<p>But as Ciaran has stated, it might make more sense to just take the hit of storing the non-gzipped data. </p>
<p>At the same time, it would be nicer to store the gzipped version, as it is both smaller so I could store more in the cache, and aren't almost all browsers gzip compatible?</p>
http://stackoverflow.com/questions/716468/memcache-gzipped-content-with-php-obgzhandler/716517#7165171Answer by Cody Caughlan for memcache gzipped content with php ob_gzhandlerCody Caughlan2009-04-04T04:42:25Z2009-04-04T04:42:25Z<p>It sounds like you are asking about a passive cache, where you have some code that queries a cache, and upon a cache miss, it generates the data, inserts it into your cache and then returns it. The short of the story is that your code will always return a chunk of data, but whether it returns it by calculating or by hitting the cache, well, the callee code doesnt care.</p>
<p>Is this correct?</p>
<p>Ultimately, your question is vague and doesnt contain enough information.</p>
http://stackoverflow.com/questions/716468/memcache-gzipped-content-with-php-obgzhandler/716933#7169331Answer by Ciaran McNulty for memcache gzipped content with php ob_gzhandlerCiaran McNulty2009-04-04T11:33:23Z2009-04-04T11:33:23Z<p>ob_gzhandler() will return either a string or false, depending on whether the client browzer supports gzip, deflate or no encoding. You're probably using this function via ob_start() or similar.</p>
<p>Because the result is different per-client, it's not a great idea to try and cache the result (i.e. in some cases it'll be FALSE, in some cases it'll be a 'deflate'-encoded response and in others it'll be a 'gzip'-encoded response).</p>
<p>It would seem to make more sense to cache the content that's being gzipped, and take the 'hit' of it being re-compressed each requests - in practice this shouldn't be a huge overhead.</p>
http://stackoverflow.com/questions/716468/memcache-gzipped-content-with-php-obgzhandler/717396#7173960Answer by Alister Bulman for memcache gzipped content with php ob_gzhandlerAlister Bulman2009-04-04T16:54:44Z2009-04-04T16:54:44Z<p>If it's just about reducing the number of bytes transferred into storage, there are a number of clients that can compress the data before it's sent to memcache - depending on the size (compressing 50K is useful, 5 bytes, not so much). As @Ciaran says, the overhead to then re-compress for the final delivery - if required - isn't so much.</p>