Doctrine\ODM\OrientDB\Mapper\ClusterMap::load PHP Метод

load() защищенный Метод

Tries to load the map from cache, otherwise generates it.
protected load ( )
    protected function load()
    {
        if ($this->cache->contains($this->getCacheKey())) {
            $this->map = $this->cache->fetch($this->getCacheKey());
        } else {
            $this->generateMap();
        }
    }