solrParams.addSortField("item.id", ORDER.asc);
QueryResponse response = server.query(solrParams);
if (response.getResults().getNumFound() > 0)
return response.getResults().get(0);
else
throw new SolrSearchEmptyException();
}
catch (SolrServerException ex)
{
throw new SolrSearchEmptyException(ex.getMessage(), ex);
}
}