Package org.springframework.data.solr

Examples of org.springframework.data.solr.SolrRealtimeGetRequest


    return execute(new SolrCallback<Collection<T>>() {
      @Override
      public Collection<T> doInSolr(SolrServer solrServer) throws SolrServerException, IOException {

        QueryResponse response = new SolrRealtimeGetRequest(ids).process(solrServer);
        return convertSolrDocumentListToBeans(response.getResults(), clazz);
      }

    });
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.solr.SolrRealtimeGetRequest

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.