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);
}
});
}