Package org.terrier.structures.indexing.singlepass.hadoop

Examples of org.terrier.structures.indexing.singlepass.hadoop.HadoopRunIteratorFactory


  /** Creates the RunsMerger and the RunIteratorFactory */
  protected RunsMerger createtheRunMerger() {
    //logger.info("creating run merged with fields="+useFieldInformation);
    runIteratorF =
      new HadoopRunIteratorFactory(null,
        (useFieldInformation
          ? FieldPostingInRun.class
          : SimplePostingInRun.class),
        super.numFields);
    HadoopRunsMerger tempRM = new HadoopRunsMerger(runIteratorF);
View Full Code Here


    numOfTokensInBlock = 0;
  }
 
  protected RunsMerger createtheRunMerger() {
    runIteratorF =
      new HadoopRunIteratorFactory(null,
        (useFieldInformation
          ? BlockFieldPostingInRun.class
          : BlockPostingInRun.class),
        super.numFields);
    HadoopRunsMerger tempRM = new HadoopRunsMerger(runIteratorF);
View Full Code Here

TOP

Related Classes of org.terrier.structures.indexing.singlepass.hadoop.HadoopRunIteratorFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.