Prado\Data\SqlMap\DataMapper\TSqlMapApplicationCache::getKeyListId PHP Method

getKeyListId() protected method

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