Memcached should be installed correctly. I'm using php 5.4
With this code I should get '99' as a result but I end up with 'bool(false)'.
$m = new Memcached();
$m->addServer('localhost', 11211);
$m->set('int', 99);
var_dump($m->get('int'));