You are here

public function CacheDataCollector::getCacheMisses in Devel 8.3

Same name and namespace in other branches
  1. 8 webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getCacheMisses()
  2. 8.2 webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getCacheMisses()
  3. 4.x webprofiler/src/DataCollector/CacheDataCollector.php \Drupal\webprofiler\DataCollector\CacheDataCollector::getCacheMisses()

Callback to return miss cache CIDs keyed by bin.

Return value

array

File

webprofiler/src/DataCollector/CacheDataCollector.php, line 138

Class

CacheDataCollector
Collects the used cache bins and cache CIDs.

Namespace

Drupal\webprofiler\DataCollector

Code

public function getCacheMisses() {
  return $this
    ->cacheCids(CacheDataCollector::WEBPROFILER_CACHE_MISS);
}