Append data to an existing item on the memcache server
string $key:
string $value:
int $expiration:
boolean
Overrides BaseMemcacheProfilerStorage::appendValue
protected function appendValue($key, $value, $expiration = 0) {
$memcached = $this
->getMemcached();
if (!($result = $memcached
->append($key, $value))) {
return $memcached
->set($key, $value, $expiration);
}
return $result;
}