Uses of Interface
org.terrier.structures.PostingIndexInputStream
-
Packages that use PostingIndexInputStream Package Description org.terrier.realtime.memory Provides MemoryIndex structures.org.terrier.realtime.memory.fields Provides MemoryIndex structures that support field search.org.terrier.structures.bit Provides on-disk index structures that support the older bit-level compression scheme.org.terrier.structures.indexing.singlepass Provides implementation of the structures needed for performing a single pass indexing -
-
Uses of PostingIndexInputStream in org.terrier.realtime.memory
Classes in org.terrier.realtime.memory that implement PostingIndexInputStream Modifier and Type Class Description protected class
MemoryDirectIndex.DirectIterator
Direct index iterator.class
MemoryInvertedIndex.InvertedIterator
Inverted index iterator.Methods in org.terrier.realtime.memory that return PostingIndexInputStream Modifier and Type Method Description PostingIndexInputStream
MemoryDirectIndex. iterator()
Return an iterator over the inverted file.PostingIndexInputStream
MemoryInvertedIndex. iterator()
Return an iterator over the inverted file. -
Uses of PostingIndexInputStream in org.terrier.realtime.memory.fields
Methods in org.terrier.realtime.memory.fields that return PostingIndexInputStream Modifier and Type Method Description PostingIndexInputStream
MemoryFieldsDirectIndex. iterator()
Return an iterator over the inverted file. -
Uses of PostingIndexInputStream in org.terrier.structures.bit
Classes in org.terrier.structures.bit that implement PostingIndexInputStream Modifier and Type Class Description class
BitPostingIndexInputStream
Input stream for a bit posting index. -
Uses of PostingIndexInputStream in org.terrier.structures.indexing.singlepass
Methods in org.terrier.structures.indexing.singlepass with parameters of type PostingIndexInputStream Modifier and Type Method Description protected long
BlockInverted2DirectIndexBuilder. traverseInvertedFile(PostingIndexInputStream iiis, int firstDocid, int countDocuments, org.terrier.structures.indexing.singlepass.Posting[] directPostings)
traverse the inverted file, looking for all occurrences of documents in the given rangeprotected long
Inverted2DirectIndexBuilder. traverseInvertedFile(PostingIndexInputStream iiis, int firstDocid, int countDocuments, org.terrier.structures.indexing.singlepass.Posting[] directPostings)
traverse the inverted file, looking for all occurrences of documents in the given range
-