You are here

public function CoordinatedWriteCounterTrait::getFastStorage in Supercache 8

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

Return value

mixed

2 calls to CoordinatedWriteCounterTrait::getFastStorage()
CoordinatedWriteCounterTrait::getHeadId in src/Cache/CoordinatedWriteCounterTrait.php
Retrieve the key that identifies the volatile storage head.
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::getFastStorage()
ChainedFastBackend::getFastStorage in src/Cache/ChainedFastBackend.php
ChainedFastRawBackend::getFastStorage in src/Cache/ChainedFastRawBackend.php

File

src/Cache/CoordinatedWriteCounterTrait.php, line 193

Class

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

Namespace

Drupal\supercache\Cache

Code

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