Package org.apache.solr.search.grouping.distributed.shardresultserializer

Examples of org.apache.solr.search.grouping.distributed.shardresultserializer.SearchGroupsResultTransformer


      if (!rb.searchGroupToShard.containsKey(field)) {
        rb.searchGroupToShard.put(field, new HashMap<SearchGroup<String>, String>());
      }
    }

    SearchGroupsResultTransformer serializer = new SearchGroupsResultTransformer(rb.req.getSearcher());
    try {
      for (ShardResponse srsp : shardRequest.responses) {
        @SuppressWarnings("unchecked")
        NamedList<NamedList> firstPhaseResult = (NamedList<NamedList>) srsp.getSolrResponse().getResponse().get("firstPhase");
        Map<String, Collection<SearchGroup<String>>> result = serializer.transformToNative(firstPhaseResult, groupSort, null, srsp.getShard());
        for (String field : commandSearchGroups.keySet()) {
          Collection<SearchGroup<String>> searchGroups = result.get(field);
          if (searchGroups == null) {
            continue;
          }
View Full Code Here

TOP

Related Classes of org.apache.solr.search.grouping.distributed.shardresultserializer.SearchGroupsResultTransformer

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.