Prado\Data\SqlMap\DataMapper\TFastSqlMapApplicationCache::getBaseKey PHP Method

getBaseKey() protected method

protected getBaseKey ( )
    protected function getBaseKey()
    {
        $cache = $this->getCache();
        $keyname = $this->getBaseKeyKeyName();
        $basekey = $cache->get($keyname);
        if (!$basekey) {
            $basekey = DxUtil::generateRandomHash(8);
            $cache->set($keyname, $basekey);
        }
        return $basekey;
    }