You are here

public static function Redis_Client::getClientName in Redis 7

Same name and namespace in other branches
  1. 7.2 lib/Redis/Client.php \Redis_Client::getClientName()

Get underlaying library name.

Return value

string

2 calls to Redis_Client::getClientName()
redis_help in ./redis.module
Implements hook_help().
redis_requirements in ./redis.install
Implements hook_requirements().

File

lib/Redis/Client.php, line 84

Class

Redis_Client
Common code and client singleton, for all Redis clients.

Code

public static function getClientName() {
  return self::getClientInterface()
    ->getName();
}