I’m using SolrJ. But through the API documentation could not figure out how to use the particular class to receive the response of the spell checker.
i have a search component defined in solrconfig.xml for performing the checking
I’m using SolrJ. But through the API documentation could not figure out how to
Share
Maybe you already found the solution, anyway the
SpellingResultclass comes with Solr, while you’re using SolrJ to access a Solr server, if I’m not wrong. So, you should use the specific classes that come with SolrJ; theQueryResponseobject contains aSpellCheckResponseobject with all the information you’re looking for.Hope this helps.