protected function MemcacheProfilerStorage::getValue

Retrieve item from the memcache server

Parameters

string $key:

Return value

mixed

Overrides BaseMemcacheProfilerStorage::getValue

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/MemcacheProfilerStorage.php, line 66

Class

MemcacheProfilerStorage
Memcache Profiler Storage

Namespace

Symfony\Component\HttpKernel\Profiler

Code

protected function getValue($key) {
  return $this
    ->getMemcache()
    ->get($key);
}