Prado\Caching\TAPCCache::addValue PHP 메소드

addValue() 보호된 메소드

This is the implementation of the method declared in the parent class.
protected addValue ( $key, $value, $expire ) : boolean
리턴 boolean true if the value is successfully stored into cache, false otherwise
    protected function addValue($key, $value, $expire)
    {
        return apc_add($key, $value, $expire);
    }