Output Caching with PHP - Multiple caching: splitting the Web page content (
Page 4 of 5 )
As stated above, since most websites are composed of a header section, body and footer section, we are going to implement server side caching for each part. Also, we need to set up some kind of criteria for checking whether cache files are valid. The most common caching policy approaches are the following:
- Time triggered caching (expiry timestamp).
- Content change triggered caching (sensitive content has changed, so cache must be updated).
- Manually triggered caching (manually inform the application that information is outdated, and force a new cache creation).
For the scope of this article, we will use a time triggered caching policy for each part of the web page.
Let’s see how it works:
First, we define that the page header will have an expiry time of one day or 86400 seconds (only for purposes of example). Our body section will have an expiry time of ten seconds, and our page footer will be valid for one day.
Having defined expiry times for each section, let’s build two very intuitive and useful functions. The first one will take care of creating the cache files for the proper section. The second will check to see whether there is a valid cached version for the section. If there is, it will return the cached content extracted from the cache file. Otherwise, it will return false.
The functions are as follow:
function createCache ( $content , $cacheFile ) {
$fp = fopen( $cachefile , ‘w’ );
fwrite( $fp , $content );
fclose( $fp);
}
function getCache ( $cacheFile , $expireTime ) {
if ( file_exists ( $cacheFile ) && filemtime ( $cacheFile ) >( time() - $expireTime ) ) {
return file_get_contents( $cacheFile );
}
return false;
}
The function createCache takes two parameters: content from the output buffer and the cache filename where the output will be stored. Once the buffer content is obtained, it is stored as a file. Similarly, the function getCache accepts two arguments: the cache filename and expiry time (expressed in seconds). The function checks to see whether there is a cache file and whether it is valid. Cache validity is tested to see whether the cache file modification timestamp is greater than the current time less the expiry time. If the cache file is found to be valid, then cache content is returned. Otherwise it returns false.
Having defined this two core functions, we are able to build the new script:
<?php
// start output buffering
ob_start();
// check if a valid header cache exists
if ( !$header = getCache( ‘headerCache.txt’ , 86400 ) {
// display header section
?>
<html>
<head>
<title>Cached Page</title>
</head>
<body>
The header section is updated on a daily basis.
<?php
$header = ob_get_contents();
ob_clean();
createCache( $header , ‘headerCache.txt’ );
}
// check if a valid body cache exists
if ( !$body = getCache( ‘bodyCache.txt’ , 10 ) {
// display body section
?>
<h1>This section is updated every 10 seconds.</h1>
<?php
$body = ob_get_contents();
ob_clean();
createCache( $body , ‘bodyCache.txt’ );
}
// check if a valid footer cache exists
if ( !$footer = getCache( ‘footerCache.txt’ , 86400 ) {
// display footer section
?>
The footer section is updated on a daily basis.
</body>
</html>
<?php
$footer = ob_get_contents();
ob_clean();
createCache( $footer , ‘footerCache.txt’ );
}
// stops output buffering
ob_end_clean();
// display the complete page
echo $header . $body . $footer;
?>
The script is pretty straightforward in its functionality. Let’s see what it does in detail.
Once output buffering is started, the script checks in turn for the corresponding cache files, which store header, body and footer sections. If the cache files are not valid based on expiry times given for each section, new content is generated, stored in the buffer and finally written to the proper cache files. When the whole page content is obtained either from the buffer or from cache files, it will be displayed in the user’s browser.
The script’s output is the following:
The header section is updated on a daily basis.
This section is updated every 10 seconds.
The footer section is updated on a daily basis.
Each section of the page will be updated according to our caching policy, with the body updated every ten seconds.
| | Discuss Output Caching with PHP | | | | | | | The article deals with the basics of PHP Output Caching. Also, it shows some chunked... | | | | | |
For the sake of clarity and accuracy, where it reads $cachefile, should be... | | | | | | Too much editorialising, discussing history, something. After reading the first... | | | | | | Hello Sr.
Thank you for the comment. I'm sorry you didn't enjoy the article. That... | | | | | | I find it interesting that you didn't mention Smarty as a caching option. On top of... | | | | | | Hi David,
Thank you for the commnent. The interspered PHP is only for the... | | | | | | i am a beginner, just pure questions.
what's the point of using all the ob_start,... | | | | | | Yes , i like it and am using it long time ago , the benefit( my opinion) the cache... | | | | | | Hi,
I totally agree with you!
Alejandro Gervasio | | | | | | Hello,
This article is intented to be an introduction to PHP cache capabilities,... | | | | | | I disagree, the beginning of the article made the subject and benefit quite... | | | | | | David says he'd like to see the HTML and PHP in separate files. I've been reading a... | | | | | | Well, Smarty is an excellent template system (and includes more capabilities too)... | | | | | | im kinda new to caching and I was trying the original script..im sorry if it looks... | | | | | | ok im replying to myself, erm it's late here and i hate these kinda glitches that... | | | | | | Is it possible to implement this process in the phpBB code for discussion... | | | | | | Thank you for posting your comment here. With regard to your question, unfortunately... | | | | | | Thanks for the very prompt reply! I guess I should just give up then....have spent... | | | | | | I'd like thank you for posting your feedback here. With reference to your problem,... | | | | | | Good Tutorial thk,
just a little correct though
It would probly not be long for U... | | | | | | Hi Sig again,
Thank you fo pointing out the missing parenthesis on the code. It... | | | | | | thnX a lot Alejandro for this amazing article.
when I was read it ,I could see the... | | | | | | Thank you for the kind comments on my PHP article and your excellent suggestion on... | | | | | | There's a straight forward explanation why there must be files. Caching is supposed... | | | | | | Thanks for the great contribution. That’s exactly the purpose in caching PHP... | | | | | | Hey, this is a great article, really made caching seem a simple affair! I am... | | | | | | Thanks for the kind words on my PHP caching article. Regarding your questions,... | | | | | | Thanks for your article. This gave me a good view of how Caching works, had no idea... | | | | | | >>> Post your comment now! | | | | | |
|
 |