What is the correct way of getting results from solrj using Solr Suggester?
This is my request:
SolrQuery query = new SolrQuery(); query.setRequestHa
You can get the suggestions via the SpellCheckResponse by doing the following
SpellCheckResponse
SpellCheckResponse spellCheckResponse=response.getSpellCheckResponse();
Check this link for more details