Neos\Cache\Backend\MemcachedBackend::setItem PHP Метод

setItem() защищенный Метод

Stores an item on the server
protected setItem ( string $key, string $value, integer $expiration ) : boolean
$key string
$value string
$expiration integer
Результат boolean
    protected function setItem($key, $value, $expiration)
    {
        if ($this->memcache instanceof \Memcached) {
            return $this->memcache->set($key, $value, $expiration);
        }
        return $this->memcache->set($key, $value, $this->flags, $expiration);
    }