public function ApcuBackendFactory::get

public ApcuBackendFactory::get($bin)

Gets ApcuBackend for the specified cache bin.

Parameters

$bin: The cache bin for which the object is created.

Return value

\Drupal\Core\Cache\ApcuBackend The cache backend object for the specified cache bin.

Overrides CacheFactoryInterface::get

File

core/lib/Drupal/Core/Cache/ApcuBackendFactory.php, line 60

Class

ApcuBackendFactory

Namespace

Drupal\Core\Cache

Code

public function get($bin) {
  return new $this->backendClass($bin, $this->sitePrefix, $this->checksumProvider);
}

© 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::get/8.1.x