Home
last modified time | relevance | path

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

/dokuwiki/_test/tests/Search/Collection/
H A DTermTest.php146 $frequencies = $term->getEntityFrequencies();
147 $this->assertEquals(10, $frequencies['page1']); // 5 + 3 + 2
148 $this->assertEquals(7, $frequencies['page2']);
174 $frequencies = $term->getEntityFrequencies();
175 $this->assertEquals(5, $frequencies['page1']);
176 $this->assertEquals(0, $frequencies['page2']);
177 $this->assertEquals(3, $frequencies['page3']);
/dokuwiki/_test/tests/Search/Query/
H A DQueryEvaluatorTest.php20 * @param array $frequencies [pageName => frequency]
23 protected function makeTerm(string $word, array $frequencies): Term argument
26 foreach ($frequencies as $page => $freq) {
/dokuwiki/inc/Search/
H A Dconcept.txt46 …at store one kind of information. E.g. a list of all page names or a list of page-word frequencies.
70 * A list of tuples. Eg. a list of pageIDs and frequencies
86 * ''w3.idx'' / ''i3.idx'' - stores all 3-letter tokens and their frequencies
87 * ''w4.idx'' / ''i4.idx'' - stores all 4-letter tokens and their frequencies
88 * ''w5.idx'' / ''i5.idx'' - stores all 5-letter tokens and their frequencies
158 …ency collections, but each token appears only once per entity thus all frequencies are 1. Searches…
228 …he full match detail: which tokens matched on which entities with what frequencies. Various access…