Prado\Data\SqlMap\DataMapper\TSqlMapApplicationCache::getKeyList PHP 메소드

getKeyList() 보호된 메소드

Retreive keylist from cache or create it if it doesn't exists
protected getKeyList ( ) : Prado\Collections\TList
리턴 Prado\Collections\TList
    protected function getKeyList()
    {
        if (($keyList = $this->getCache()->get($this->getKeyListId())) === false) {
            $keyList = new TList();
            $this->getCache()->set($this->getKeyListId(), $keyList);
        }
        return $keyList;
    }