Prado\Data\SqlMap\DataMapper\TSqlMapLruCache::get PHP Method

get() public method

public get ( $key ) : mixed
return mixed Gets a cached object with the specified key.
    public function get($key)
    {
        if ($this->_keyList->contains($key)) {
            $this->_keyList->remove($key);
            $this->_keyList->add($key);
            return $this->_cache->itemAt($key);
        }
    }
TSqlMapLruCache