Hi,
After install memcache, sample implementation.
Now that all the pieces are in place, let's integrate memcached into our application. First thing we need to do is to connect to our memcached server:
PLAIN TEXT
PHP:
PHP Code:
$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");