The autocomplete feature in Solr is built on the spell checker component, and is called Suggester, which is why you've seen both of those mentioned. It's implemented with a searchComponent and a requestHandler.
The Solr Reference Guide has a decent overview of how to implement it and I just made a few edits to make what needs to be done a bit more clear: https://cwiki.apache.org/confluence/display/solr/Suggester If you have suggestions for improvements to that doc (such as steps that aren't clear), you're welcome to set up an account there and leave a comment. Cassandra On Tue, Aug 13, 2013 at 11:16 AM, Mysurf Mail <stammail...@gmail.com> wrote: > I have indexed the data from the db and so far it searches really well. > Now I want to create auto-complete/suggest feature in my website > So far I have seen articles about Suggester, spellchecker, and > searchComponents. > Can someone point me to a good article about basic autocomplete > implementation?