Prado\Caching\TXCache::addValue PHP Method

addValue() protected method

This is the implementation of the method declared in the parent class.
protected addValue ( $key, $value, $expire ) : boolean
return boolean true if the value is successfully stored into cache, false otherwise
    protected function addValue($key, $value, $expire)
    {
        return !xcache_isset($key) ? $this->setValue($key, $value, $expire) : false;
    }