You are here

public function ApcuBackend::removeBin in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Cache/ApcuBackend.php \Drupal\Core\Cache\ApcuBackend::removeBin()

Remove a cache bin.

Overrides CacheBackendInterface::removeBin

File

core/lib/Drupal/Core/Cache/ApcuBackend.php, line 225
Contains \Drupal\Core\Cache\ApcuBackend.

Class

ApcuBackend
Stores cache items in the Alternative PHP Cache User Cache (APCu).

Namespace

Drupal\Core\Cache

Code

public function removeBin() {
  apc_delete(new \APCIterator('user', '/^' . preg_quote($this->binPrefix, '/') . '/'));
}