public static function Redis_Client::getClientName in Redis 7.2
Same name and namespace in other branches
- 7 lib/Redis/Client.php \Redis_Client::getClientName()
Get underlaying library name.
Return value
string
3 calls to Redis_Client::getClientName()
- Redis_Client::getClass in lib/
Redis/ Client.php - Get specific class implementing the current client usage for the specific asked core subsystem.
- redis_help in ./
redis.module - Implements hook_help().
- redis_requirements in ./
redis.install - Implements hook_requirements().
File
- lib/
Redis/ Client.php, line 145
Class
- Redis_Client
- Common code and client singleton, for all Redis clients.
Code
public static function getClientName() {
return self::getClientInterface()
->getName();
}