You are here

abstract protected function BaseMemcacheProfilerStorage::setValue 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::setValue()

Store an item on the memcache server under the specified key.

Parameters

string $key:

mixed $value:

int $expiration:

Return value

bool

1 call to BaseMemcacheProfilerStorage::setValue()
BaseMemcacheProfilerStorage::write in vendor/symfony/http-kernel/Profiler/BaseMemcacheProfilerStorage.php
Saves a Profile.
2 methods override BaseMemcacheProfilerStorage::setValue()
MemcachedProfilerStorage::setValue in vendor/symfony/http-kernel/Profiler/MemcachedProfilerStorage.php
Store an item on the memcache server under the specified key.
MemcacheProfilerStorage::setValue in vendor/symfony/http-kernel/Profiler/MemcacheProfilerStorage.php
Store an item on the memcache server under the specified key.

File

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

Class

BaseMemcacheProfilerStorage
Base Memcache storage for profiling information in a Memcache.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

protected abstract function setValue($key, $value, $expiration = 0);