News Feed
Jobs Feed
Sections




News Archive
Procurios Blog:
Fragment Cache - an introduction / PHP
June 11, 2010 @ 08:39:21

On the Procurios blog today there's a new post talking about a different sort of way to optimize your site's perfomance - fragment caching.

So if web caching is not an option, what is the next best thing? To cache parts of the page, put them together, and serve that. You can use a caching tool for this, like Memcached. There's only one catch: the cached content may need to change when any of the things it depends on changes: data, code, user input, and the like. You can pass an expiration time when you add your content to Memcache. This will cause your cache to live only a certain amount of time and then expire. Nice, but we can do better.

The method he talks about involves expiring the cached data when the dynamic data it comes from has expired rather than setting an expiration time on the data itself. Each time the data its pulled/rendered, the cached data is checked and is updated if the need is there. You're not so much checking for a valid cache as you are forcing an update when needed. There are some side effects mentioned like more database load and increased server load because of the data generation each time.

Code examples are included in the post that use this caching library to get the job done. You can also see how it works in the test file using that library.

0 comments voice your opinion now!
fragment cache tutorial expire content


blog comments powered by Disqus

Similar Posts

PseudoCoder.com: How To Really Use Xdebug To Speed Up Your App

PHPBuilder.com: Fundamentals of PHP Superglobals

Mpwebwizard.com: Use a mirror for hits from popular websites

phpRiot.com: Zend Framework 101: Zend_Cache

NETTUTS.com: Object-Oriented PHP for Beginners


Community Events











Don't see your event here?
Let us know!


zendframework2 example symfony2 podcast rest conference release functional community series framework usergroup interview language database testing opinion development phpunit introduction

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework