Forum Moderators: coopster
Basically it executes the php file and saves the output to an html file. Then in my site, I just include that html file, and the php is executed every 15 minutes.
Perfect for the few database queries I need to run!
I rolled my own as PHP_Chimp suggested. I have geographic industry niche resource guides and in line with my overly obsessive pathos, I developed a simple get/put cache library. My cache operates with page chunks. In other words, there are certain chunks that change daily (or hourly) while other chunks might change weekly (or monthly). This allows me to maximize my cache hits while ensuring fresh content. It reduces Mysql query loads substantially, particularly with respect to search engine spiders who roll through my sites constantly.
Sean