Lines Matching defs:cache
19 protected $cache = [];
31 $this->cache =& $cache_revinfo;
32 if (!isset($this->cache[$id])) {
33 $this->cache[$id] = [];
109 * Parses a changelog line into its components and save revision info to the cache pool
119 $this->cache[$this->id][$info['date']] ??= $info;
160 // check if it's already in the memory cache
161 if (isset($this->cache[$this->id][$rev])) {
162 return $this->cache[$this->id][$rev];
172 // parse and cache changelog lines
177 return $this->cache[$this->id][$rev] ?? false;
338 // also parse and cache changelog lines for getRevisionInfo().
683 // cache current revision information of external edition
685 $this->cache[$this->id][$this->currentRevision] = $revInfo;