Lines Matching refs:collection
65 Usually indexes are not accessed directly but through a collection. That collection will manage whi…
84 In a fulltext collection with splitting enabled:
138 …collection describes how data is aggregated into multiple indexes to make it accessible for a spec…
140 …talking about a collection. There is no "fulltext index" - that functionality is only achieved by …
142 A collection manages up to four indexes:
149 The reverse index format depends on whether the collection uses split indexes:
155 The **collection type** determines how tokens relate to entities:
161 Independently of the collection type, a collection can use **split or non-split token indexes**. Se…
171 …ta to a collection. It replaces all previously stored tokens for the given entity. An empty token …
174 $collection = new PageFulltextCollection($pageIndex);
175 $collection->lock();
176 $collection->addEntity('wiki:page', $words);
177 $collection->unlock();
188 * ''getEntitiesWithData()'' - Return all entity names that have data in this collection.
191 Searching across a collection is done through the ''CollectionSearch'' class (see below).
215 The ''CollectionSearch'' class executes searches against any collection. Use ''addTerm()'' to regis…
218 $search = new CollectionSearch($collection);