null Driver_Cache_Driver_Memcache::__call( )
public function __call($method, $params)
{
$this->_connect();
if (method_exists($this->_memcache, $method))
{
return call_user_func_array(array($this->_memcache, $method), $params);
}
}