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
Namespace
Drupal\Core\Cache
Code
1 2 3 4 5 6 7 8 9 10 | 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' ; } } |
Please login to continue.