You are here

private function BaseMemcacheProfilerStorage::getIndexName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Profiler/BaseMemcacheProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\BaseMemcacheProfilerStorage::getIndexName()

Get name of index.

Return value

string

3 calls to BaseMemcacheProfilerStorage::getIndexName()
BaseMemcacheProfilerStorage::find in vendor/symfony/http-kernel/Profiler/BaseMemcacheProfilerStorage.php
Finds profiler tokens for the given criteria.
BaseMemcacheProfilerStorage::purge in vendor/symfony/http-kernel/Profiler/BaseMemcacheProfilerStorage.php
Purges all data from the database.
BaseMemcacheProfilerStorage::write in vendor/symfony/http-kernel/Profiler/BaseMemcacheProfilerStorage.php
Saves a Profile.

File

vendor/symfony/http-kernel/Profiler/BaseMemcacheProfilerStorage.php, line 289

Class

BaseMemcacheProfilerStorage
Base Memcache storage for profiling information in a Memcache.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

private function getIndexName() {
  $name = self::TOKEN_PREFIX . 'index';
  if ($this
    ->isItemNameValid($name)) {
    return $name;
  }
  return false;
}