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

getKeyListId() 보호된 메소드

protected getKeyListId ( ) : string
리턴 string a KeyListID for the cache model.
    protected function getKeyListId()
    {
        $id = 'keyList';
        if ($this->_cacheModel instanceof TSqlMapCacheModel) {
            $id .= '_' . $this->_cacheModel->getId();
        }
        return $id;
    }