You are here

public function PermanentRedisBackend::deleteAllPermanent in Permanent Cache Bin 8

Same name and namespace in other branches
  1. 8.2 modules/pcb_redis/src/Cache/PermanentRedisBackend.php \Drupal\pcb_redis\Cache\PermanentRedisBackend::deleteAllPermanent()

Deletes all cache items in a bin when explicitly called.

See also

\Drupal\Core\Cache\DatabaseBackend::deleteAll()

File

modules/pcb_redis/src/Cache/PermanentRedisBackend.php, line 27

Class

PermanentRedisBackend
Defines a permanent Redis cache implementation.

Namespace

Drupal\pcb_redis\Cache

Code

public function deleteAllPermanent() {
  parent::deleteAll();
}