How to Displaying an RSS feed with PHP
Introduction
Whether you are retrieving information from a database or grabbing news headlines from another site, properly used caching can help reduce the run time of your PHP scripts and load on your server. Aside from the speed considerations, caching can also add dependability. By caching results from your database queries, you can still use the results in the event your database goes down.
Today we will look at a class designed to do caching, but first, let’s determine when we should use caching.