Caching in PHP using the filesystem, APC and Memcached


Caching in PHP using the filesystem, APC and Memcached

Caching is very important and really pays off in big internet applications. When you cache the data you’re fetching from the database, in a lot of cases the load on your servers can be reduced enormously.

A good discussion of three major caching approaches in PHP with accompanying well written code.

Related Posts