You are here

public function CoordinatedWriteCounterTrait::getPersistentStorage in Supercache 8

Same name and namespace in other branches
  1. 2.0.x src/Cache/CoordinatedWriteCounterTrait.php \Drupal\supercache\Cache\CoordinatedWriteCounterTrait::getPersistentStorage()

Return value

mixed

1 call to CoordinatedWriteCounterTrait::getPersistentStorage()
CoordinatedWriteCounterTrait::getLastWrite in src/Cache/CoordinatedWriteCounterTrait.php
Items retrieve from the persistent backend that have been modified prior to this timestamp are to be considered outdated.
2 methods override CoordinatedWriteCounterTrait::getPersistentStorage()
ChainedFastBackend::getPersistentStorage in src/Cache/ChainedFastBackend.php
ChainedFastRawBackend::getPersistentStorage in src/Cache/ChainedFastRawBackend.php

File

src/Cache/CoordinatedWriteCounterTrait.php, line 200

Class

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

Namespace

Drupal\supercache\Cache

Code

public function getPersistentStorage($cid) {
  throw new \Exception("Not implemented.");
}