Caching a PHP script for the rest of the day - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:07:03Zhttp://stackoverflow.com/feeds/question/437769http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/437769/caching-a-php-script-for-the-rest-of-the-day1Caching a PHP script for the rest of the daychet2009-01-13T02:21:58Z2009-03-23T15:17:09Z
<p>How can I make a PHP script cache-friendly to our private reverse proxy (Squid)?</p>
<p>I would like it to stay cached for the rest of the day. In other words, the page's last modification is 00:00 today and it will expire at 00:00 tomorrow.</p>
<p>What are the minimum required HTTP headers to do this reliably?</p>
<p>EDIT: I do not want the client's browser to cache any differently. That is, I wish to retain control over purging stale pages on our Squid server at any given time.</p>
http://stackoverflow.com/questions/437769/caching-a-php-script-for-the-rest-of-the-day/437778#4377781Answer by cletus for Caching a PHP script for the rest of the daycletus2009-01-13T02:27:22Z2009-01-13T02:27:22Z<p>I assume you mean you want to cache the <strong>output</strong> of the script, not the script itself. And you clearly want serverside scripting so HTTP headers is not what you want (unless there is some tie-in to Squid, which there very well might be). But this isn't what Squid is designed for.</p>
<p>For this kind of thing, you really want <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a> (or similar).</p>
<p>Check if the result is in the cache. If it is, return it. If not, generate the result (eg using ob_start(), etc), put it in the cache and return it.</p>
http://stackoverflow.com/questions/437769/caching-a-php-script-for-the-rest-of-the-day/437855#4378551Answer by Javier for Caching a PHP script for the rest of the dayJavier2009-01-13T03:19:36Z2009-01-13T03:19:36Z<p>you could run your script and generate static HTML files to be served. that way, it's up to you when to replace the content.</p>
<p>you don't have to run your scripts inside the web server. a cron job works perfectly.</p>
http://stackoverflow.com/questions/437769/caching-a-php-script-for-the-rest-of-the-day/437959#4379592Answer by yap for Caching a PHP script for the rest of the dayyap2009-01-13T04:30:28Z2009-01-13T04:39:31Z<p>@OP:
Below is some commented code to achieve what you asked.</p>
<p>@cletus:
You said memcached is what the OP wants, and that this is not what Squid is designed for.</p>
<p>I don't know what Squid was designed for but I know what it <em>is</em> used for and there are definitely people using it as a reverse proxy to take load off dynamic page generation. No "tie-in" is needed except standard HTTP headers.</p>
<p>I'm not sure why you're so quick to recommend memcached without knowing more about the nature of the application and environment.</p>
<pre><code><?php
// the time we got hit and generated content
$now = time();
$generatedAt = gmdate('D, d M Y H:i:s T', $now);
// the last modified date (midnight on the same day of generation, as
// per your business-rule)
$lastModified = gmdate('D, d M Y 00:00:00 T', $now);
// date of expiry (24 hours after the last modified date, as per your
// business-rule)
$expiresAt = gmdate('D, d M Y H:i:s T', strtotime($lastModified) + 86400);
// the minimum required http headers to make Squid do what you asked is
// Last-modified and Cache-control. We need to give Cache-control the
// expiry time in terms of "age" (in seconds) so we calculate that below.
// Optionally you could also provide the "Expires: $expiresAt" header to
// tell the browser/client the same information, just in a different way.
// This is not required for Squid though.
$maxAge = strtotime($expiresAt) - strtotime($generatedAt);
header('Last-modified: ' . $lastModified);
header('Cache-control: max-age=' . $maxAge);
// The rest is simply informational
header('Content-type: text/plain');
echo "The content of this page was last modified at $lastModified\n";
echo "This page was generated at $generatedAt and will be cached by Squid for $maxAge seconds until $expiresAt\n";
// Sample output:
//
// The content of this page was last modified at Tue, 13 Jan 2009 00:00:00 GMT
// This page was generated at Tue, 13 Jan 2009 04:29:33 GMT and will be cached by Squid for 70227 seconds until Wed, 14 Jan 2009 00:00:00 GMT
</code></pre>
http://stackoverflow.com/questions/437769/caching-a-php-script-for-the-rest-of-the-day/673784#6737840Answer by Ram Prasad for Caching a PHP script for the rest of the dayRam Prasad2009-03-23T15:17:09Z2009-03-23T15:17:09Z<p>Have you tried using APC ? </p>
<p><a href="http://us.php.net/apc" rel="nofollow">http://us.php.net/apc</a></p>
<blockquote>
<p>The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. It was conceived of to provide a free, open, and robust framework for caching and optimizing PHP intermediate code. </p>
</blockquote>