Uses of Class
org.terrier.structures.indexing.Indexer
-
Packages that use Indexer Package Description org.terrier.applications Provides application-level code that use the Terrier platform to perform indexing and retrieval from either standard test collections, interactive querying of a indexed collection.org.terrier.indexing Provides classes and interfaces related to the indexing of documents.org.terrier.structures.indexing.classical Provides functionality for creating on-disk indices via indexer classes.org.terrier.structures.indexing.singlepass Provides implementation of the structures needed for performing a single pass indexing -
-
Uses of Indexer in org.terrier.applications
Methods in org.terrier.applications that return Indexer Modifier and Type Method Description protected IndexerTRECIndexing. loadIndexer(java.lang.String pa, java.lang.String pr)protected IndexerTRECIndexingSinglePass. loadIndexer(java.lang.String pa, java.lang.String pr) -
Uses of Indexer in org.terrier.indexing
Methods in org.terrier.indexing with parameters of type Indexer Modifier and Type Method Description static IndexIndexTestUtils. makeIndex(java.lang.String[] docnos, java.lang.String[] documents, Indexer indexer, java.lang.String path, java.lang.String prefix)static IndexIndexTestUtils. makeIndexFields(java.lang.String[] docnos, java.lang.String[] documents, Indexer indexer, java.lang.String path, java.lang.String prefix)Method parameters in org.terrier.indexing with type arguments of type Indexer Modifier and Type Method Description static IndexIndexTestUtils. makeIndex(java.lang.String[] docnos, java.lang.String[] documents, java.lang.Class<? extends Indexer> indexClz) -
Uses of Indexer in org.terrier.structures.indexing.classical
Subclasses of Indexer in org.terrier.structures.indexing.classical Modifier and Type Class Description classBasicIndexerBasicIndexer is the default indexer for Terrier.classBlockIndexerAn indexer that saves block information for the indexed terms. -
Uses of Indexer in org.terrier.structures.indexing.singlepass
Subclasses of Indexer in org.terrier.structures.indexing.singlepass Modifier and Type Class Description classBasicSinglePassIndexerThis class indexes a document collection (skipping the direct file construction).classBlockSinglePassIndexerIndexes a document collection saving block information for the indexed terms.classExtensibleSinglePassIndexerDirectly based on BasicSinglePassIndexer, with just a few modifications to enable some extra hooks.classNoDuplicatesSinglePassIndexingSingle pass indexer that performs document deduplication based upon the the docno.
-