Prado\Data\SqlMap\TSqlMapManager::getCacheModel PHP 메소드

getCacheModel() 공개 메소드

Gets a cache by name
public getCacheModel ( $name ) : TSqlMapCacheModel
리턴 Prado\Data\SqlMap\Configuration\TSqlMapCacheModel the cache object.
    public function getCacheModel($name)
    {
        if (!$this->_cacheModels->contains($name)) {
            throw new TSqlMapConfigurationException('sqlmap_unable_to_find_cache_model', $name);
        }
        return $this->_cacheModels[$name];
    }