FileDocCategorySizeDatePackage
RepSelectByPrefTask.javaAPI DocApache Lucene 2.1.01631Wed Feb 14 10:46:14 GMT 2007org.apache.lucene.benchmark.byTask.tasks

RepSelectByPrefTask

public class RepSelectByPrefTask extends RepSumByPrefTask
Report by-name-prefix statistics with no aggregations. Other side effects: None.

Fields Summary
Constructors Summary
public RepSelectByPrefTask(org.apache.lucene.benchmark.byTask.PerfRunData runData)

    super(runData);
  
Methods Summary
public intdoLogic()

    Report rp = getRunData().getPoints().reportSelectByPrefix(prefix);
    
    System.out.println();
    System.out.println("------------> Report Select By Prefix ("+prefix+") ("+
        rp.getSize()+" about "+rp.getReported()+" out of "+rp.getOutOf()+")");
    System.out.println(rp.getText());
    System.out.println();

    return 0;