PHP Caching with APC
Caching PHP [http://www.php.net] scripts (intermediate opcode) in memory can make dynamic pages load fast and exert less load on the server resources (primarily the CPU usage). Typical PHP caching engines and accelerators are Zend, eAccelerator, xCache and APC (a PECL extension). Here’s a nice tutorial on…