Add a memcached server to connection pool
string $host:
integer $port:
float $timeout:
boolean
public function connect($host, $port = 6379, $timeout = 0) {
if ('127.0.0.1' == $host && 6379 == $port) {
$this->connected = true;
return true;
}
return false;
}