protected function MemcachedProfilerStorage::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/MemcachedProfilerStorage.php, line 71

Class

MemcachedProfilerStorage
Memcached Profiler Storage

Namespace

Symfony\Component\HttpKernel\Profiler

Code

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