Home
last modified time | relevance | path

Searched refs:ridCache (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/inc/Search/Index/
H A DFileIndex.php19 protected array $ridCache = []; variable in dokuwiki\\Search\\Index\\FileIndex
189 if (isset($this->ridCache[$value])) {
190 return $this->ridCache[$value];
196 if (count($this->ridCache) > 10) {
197 array_shift($this->ridCache);
199 $this->ridCache[$value] = $this->getRowID($value);
200 return $this->ridCache[$value];