Package org.apache.lucene.search.grouping

Examples of org.apache.lucene.search.grouping.TermFirstPassGroupingCollector


    this.groupSort = groupSort;
    this.topNGroups = topNGroups;
  }

  public List<Collector> create() throws IOException {
    collector = new TermFirstPassGroupingCollector(field.getName(), groupSort, topNGroups);
    return Arrays.asList((Collector) collector);
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.search.grouping.TermFirstPassGroupingCollector

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.