public function ApcuBackendFactory::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/ApcuBackendFactory.php \Drupal\Core\Cache\ApcuBackendFactory::__construct()
Constructs an ApcuBackendFactory object.
Parameters
string $root: The app root.
string $site_path: The site path.
\Drupal\Core\Cache\CacheTagsChecksumInterface $checksum_provider: The cache tags checksum provider.
File
- core/
lib/ Drupal/ Core/ Cache/ ApcuBackendFactory.php, line 38 - Contains \Drupal\Core\Cache\ApcuBackendFactory.
Class
Namespace
Drupal\Core\CacheCode
public function __construct($root, $site_path, CacheTagsChecksumInterface $checksum_provider) {
$this->sitePrefix = Settings::getApcuPrefix('apcu_backend', $root, $site_path);
$this->checksumProvider = $checksum_provider;
}