protected function MemcachedProfilerStorage::getValue in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Profiler/MemcachedProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\MemcachedProfilerStorage::getValue()
Retrieve item from the memcache server.
Parameters
string $key:
Return value
mixed
Overrides BaseMemcacheProfilerStorage::getValue
File
- vendor/
symfony/ http-kernel/ Profiler/ MemcachedProfilerStorage.php, line 69
Class
- MemcachedProfilerStorage
- Memcached Profiler Storage.
Namespace
Symfony\Component\HttpKernel\ProfilerCode
protected function getValue($key) {
return $this
->getMemcached()
->get($key);
}