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

getValue() 보호된 메소드

This is the implementation of the method declared in the parent class.
protected getValue ( $key ) : string
리턴 string the value stored in cache, false if the value is not in the cache or expired.
    protected function getValue($key)
    {
        return apc_fetch($key);
    }