com.sun.labs.minion.indexer.postings
Interface MergeablePostings

All Known Implementing Classes:
ClusterPostings, DocumentVectorPostings, FieldedDocumentVectorPostings, IDFreqPostings, IDPostings, IDWPostings

public interface MergeablePostings

An interface for postings that can be merged, not just appended.


Method Summary
 void merge(MergeablePostings mp, int[] map)
          Merges another set of postings with this set of postings.
 

Method Detail

merge

void merge(MergeablePostings mp,
           int[] map)
Merges another set of postings with this set of postings.

Parameters:
mp - the postings to merge into these postings.
map - a map from IDs in the postings to IDs in the merged space.