getClient(); } /** * Get specific class implementing the current client usage for the specific * asked core subsystem. * * @param string $system * One of the Redis_Client::IMPL_* constant. * @param string $clientName * Client name, if fixed. * * @return string * Class name, if found. * * @deprecated */ static public function getClass($system) { $class = $system . self::getClientInterfaceName(); if (!class_exists($class)) { throw new Exception(sprintf("Class '%s' does not exist", $class)); } return $class; } }