Tutorial by Examples

Memcache is a distributed object caching system and uses key-value for storing small data. Before you start calling Memcache code into PHP, you need to make sure that it is installed. That can be done using class_exists method in php. Once it is validated that the module is installed, you start with...
The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code. installation sudo apt-get install php-apc sudo /etc/init.d/apache2 restart Add Cache: apc_add ($key, $value , $t...

Page 1 of 1