public function ApcuBackendFactory::__construct

public ApcuBackendFactory::__construct($root, $site_path, CacheTagsChecksumInterface $checksum_provider)

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 40

Class

ApcuBackendFactory

Namespace

Drupal\Core\Cache

Code

public function __construct($root, $site_path, CacheTagsChecksumInterface $checksum_provider) {
  $this->sitePrefix = Settings::getApcuPrefix('apcu_backend', $root, $site_path);
  $this->checksumProvider = $checksum_provider;
  if (version_compare(phpversion('apcu'), '5.0.0', '>=')) {
    $this->backendClass = 'Drupal\Core\Cache\ApcuBackend';
  }
  else {
    $this->backendClass = 'Drupal\Core\Cache\Apcu4Backend';
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Cache!ApcuBackendFactory.php/function/ApcuBackendFactory::__construct/8.1.x