Re: Auto complete support in Solr

2008-08-14 Thread Ryan McKinley
I have using an extra core for Auto complete -- i periodically build an index where each document is an item I want to appear in the "suggest" list. I build tokens using the EdgeNGram filter. I have found that using a special analyzer gives much better results then simply using facet pref

Auto complete support in Solr

2008-08-12 Thread Shalin Shekhar Mangar
Hi, I was reading through some old threads on solr-user on implementing an auto-complete feature. A lot of times it was suggested that people should use in-memory trie data structures to implement this efficiently for high query loads rather than using Solr's facet.prefix support, perhaps at the c