I put this in the
Connectors.php file
class Vtiger_Cache_Connector_Memcached {
private $m;
function __construct(){
$this->m = new Memcached();
$this->m->addServer('localhost', 11211);
}
function set($key, $value) {
$this->m->set("vtiger$key",$value);
}
function get($key) {
return $this->m->get("vtiger$key");
}
function flush(){
return true;
}
}
and in the Connector.php file I just commented out the memory cache and
added the memcached class
// $this->connection = new
Vtiger_Cache_Connector_Memory();
$this->connection = new
Vtiger_Cache_Connector_Memcached();