You are here

public function CoordinatedWriteCounterTrait::clearFastStorage in Supercache 8

Same name and namespace in other branches
  1. 2.0.x src/Cache/CoordinatedWriteCounterTrait.php \Drupal\supercache\Cache\CoordinatedWriteCounterTrait::clearFastStorage()
1 call to CoordinatedWriteCounterTrait::clearFastStorage()
CoordinatedWriteCounterTrait::clearFastStorageIfInvalid in src/Cache/CoordinatedWriteCounterTrait.php
Some storage backends cannot rely on the information provided by $this->getLastWrite() to tell what items they should invalidate. Calling this method will clear all of the fast backend if it is considered not to be consistent with the contents of…
2 methods override CoordinatedWriteCounterTrait::clearFastStorage()
ChainedFastBackend::clearFastStorage in src/Cache/ChainedFastBackend.php
ChainedFastRawBackend::clearFastStorage in src/Cache/ChainedFastRawBackend.php

File

src/Cache/CoordinatedWriteCounterTrait.php, line 218

Class

CoordinatedWriteCounterTrait
Used by components to coordinate invalidations between a volatile and a persistent storage.

Namespace

Drupal\supercache\Cache

Code

public function clearFastStorage() {
  throw new \Exception("Not implemented.");
}