public static function ClientFactory::getClientName in Redis 8
Get underlying library name.
Return value
string
4 calls to ClientFactory::getClientName()
- ClientFactory::getClass in src/
ClientFactory.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().
- ReportController::overview in src/
Controller/ ReportController.php - Redis report overview.
File
- src/
ClientFactory.php, line 138
Class
- ClientFactory
- Common code and client singleton, for all Redis clients.
Namespace
Drupal\redisCode
public static function getClientName() {
return self::getClientInterface()
->getName();
}