How do I implement a HTML cache for a PHP site? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T00:00:25Z http://stackoverflow.com/feeds/question/55223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site 2 How do I implement a HTML cache for a PHP site? different 2008-09-10T20:20:46Z 2008-09-15T14:34:35Z <p>What is the best way of implementing a cache for a PHP site? Obviously, there are some things that shouldn't be cached (for example search queries), but I want to find a good solution that will make sure that I avoid the 'digg effect'.</p> <p>I know there is WP-Cache for WordPress, but I'm writing a custom solution that isn't built on WP. I'm interested in either writing my own cache (if it's simple enough), or you could point me to a nice, light framework. I don't know much Apache though, so if it was a PHP framework then it would be a better fit.</p> <p>Thanks.</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/55240#55240 4 Answer by argv0 for How do I implement a HTML cache for a PHP site? argv0 2008-09-10T20:26:23Z 2008-09-10T20:26:23Z <p>The best way to go is to use a proxy cache (Squid, Varnish) and serve appropriate Cache-Control/Expires headers, along with ETags : see <a href="http://www.mnot.net/cache_docs/" rel="nofollow">Mark Nottingham's Caching Tutorial</a> for a full description of how caches work and how you can get the most performance out of a caching proxy.</p> <p>Also check out <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>, and try to cache your database queries (or better yet, pre-rendered page fragments) in there.</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/55251#55251 4 Answer by Pedro for How do I implement a HTML cache for a PHP site? Pedro 2008-09-10T20:32:32Z 2008-09-10T20:32:32Z <p>You can use <a href="http://uk3.php.net/manual/en/function.ob-get-contents.php" rel="nofollow">output buffering</a> to selectively save parts of your output (those you want to cache) and display them to the next user if it hasn't been long enough. This way you're still rendering other parts of the page on-the-fly (e.g., customizable boxes, personal information).</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/55370#55370 1 Answer by TiTi for How do I implement a HTML cache for a PHP site? TiTi 2008-09-10T21:35:03Z 2008-09-10T21:35:03Z <p>You seems to be looking for a PHP cache framework. I recommend you the template system TinyButStrong that comes with a very good CacheSystem plugin. It's simple, light, customizable (you can cache whatever part of the html file you want), very powerful ^^</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/55495#55495 2 Answer by georgebrock for How do I implement a HTML cache for a PHP site? georgebrock 2008-09-10T23:34:15Z 2008-09-10T23:34:15Z <p>The PHP Smarty template engine (<a href="http://www.smarty.net" rel="nofollow">http://www.smarty.net</a>) includes a fairly advanced caching system.</p> <p>You can find details in the caching section of the Smarty manual: <a href="http://www.smarty.net/manual/en/caching.php" rel="nofollow">http://www.smarty.net/manual/en/caching.php</a></p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/58363#58363 2 Answer by Ryan Doherty for How do I implement a HTML cache for a PHP site? Ryan Doherty 2008-09-12T05:31:45Z 2008-09-12T05:31:45Z <p>I would recommend <a href="http://www.danga.com/memcached/" rel="nofollow">Memcached</a> or <a href="http://us3.php.net/apc" rel="nofollow">APC</a>. Both are in-memory caching solutions with dead-simple APIs and lots of libraries.</p> <p>The trouble with those 2 is you need to install them on your web server or another server if it's Memcached.</p> <h2>APC</h2> Pros: <ul> <li>Simple</li> <li>Fast</li> <li>Speeds up PHP execution also</li> </ul> Cons <ul> <li>Doesn't work for distributed systems, each machine stores its cache locally</li> </ul> <h2>Memcached</h2> Pros: <ul> <li>Fast(ish)</li> <li>Can be installed on a separate server for all web servers to use</li> <li>Highly tested, developed at LiveJournal</li> <li><p>Used by all the big guys (Facebook, Yahoo, Mozilla)</p> Cons:</li> <li><p>Slower than APC</p></li> <li>Possible network latency</li> <li>Slightly more configuration</li> </ul> <p>I wouldn't recommend writing your own, there are plenty out there. You could go with a disk-based cache if you can't install software on your webserver, but there are possible race issues to deal with. One request could be writing to the file while another is reading. </p> <p>You actually could cache search queries, even for a few seconds to a minute. Unless your db is being updated more than a few times a second, some delay would be ok.</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/60203#60203 0 Answer by Alister Bulman for How do I implement a HTML cache for a PHP site? Alister Bulman 2008-09-13T00:24:59Z 2008-09-13T00:24:59Z <p>Simple caching of pages, or parts of pages - the Pear::CacheLite class. I also use APC and memcache for different things, but the other answers I've seen so far are more for more complete, and complex systems. If you just need to save some effort rebuilding a part of a page - Cache_lite with a file-backed store is entirely sufficient, and very simple to implement.</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/60242#60242 0 Answer by chrisntr for How do I implement a HTML cache for a PHP site? chrisntr 2008-09-13T01:25:51Z 2008-09-13T01:25:51Z <p><a href="http://projectgazelle.org/" rel="nofollow">Project Gazelle</a> (an open source torrent site) provides a step by step guide on setting up Memcached on the site which you can easily use on any other website you might want to set up which will handle a lot of traffic.</p> <p>Grab down the source and read the documentation.</p> http://stackoverflow.com/questions/55223/how-do-i-implement-a-html-cache-for-a-php-site/63451#63451 2 Answer by mrclay for How do I implement a HTML cache for a PHP site? mrclay 2008-09-15T14:34:35Z 2008-09-15T14:34:35Z <p>If a proxy cache is out of the question, and you're serving complete HTML files, you'll get the best performance by bypassing PHP altogether. Study how <a href="http://ocaoimh.ie/wp-super-cache/" rel="nofollow">WP Super Cache</a> works. </p> <p>Uncached pages are copied to a cache folder with similar URL structure as your site. On later requests, mod_rewrite notes the existence of the cached file and serves it instead. other RewriteCond directives are used to make sure commenters/logged in users see live PHP requests, but the majority of visitors will be served by Apache directly.</p>