Given below are the steps for auto-suggest and spellcheck in single query: Make the change in TermComponent part in solrconfig.xml
<searchComponent name="termsComponent" class="org.apache.solr.handler.component.TermsComponent"/> <requestHandler name="/terms" class="org.apache.solr.handler.component.SearchHandler"> <lst name="defaults"> <bool name="terms">true</bool> </lst> <arr name="components"> <str>termsComponent</str> <str>spellcheck</str><!--Added for using spellcheck with termcomponent --> </arr> </requestHandler> Use given below query format for getting autosuggest and spellcheck suggestion. http://localhost:8983/solr/terms?terms.fl=text&terms.prefix=computr&spellcheck.q=computr&spellcheck=true -- View this message in context: http://lucene.472066.n3.nabble.com/Auto-suggest-with-spell-check-tp1015114p1025688.html Sent from the Solr - User mailing list archive at Nabble.com.