You are here

protected function MemcacheProfilerStorage::getValue in Zircon Profile 8

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

Retrieve item from the memcache server.

Parameters

string $key:

Return value

mixed

Overrides BaseMemcacheProfilerStorage::getValue

File

vendor/symfony/http-kernel/Profiler/MemcacheProfilerStorage.php, line 65

Class

MemcacheProfilerStorage
Memcache Profiler Storage.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

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