Re[2]: Question about search suggestion

2008-08-27 Thread Aleksey Gogolev
I searched and read about auto-complete feature. Thanks. It looks nice, I think I should try it first. NM> On Tue, 26 Aug 2008 15:15:21 +0300 NM> Aleksey Gogolev <[EMAIL PROTECTED]> wrote: >> >> Hello. >> >> I'm new to solr and I need to make a search suggest (like google >> suggestions). >>

Re: Question about search suggestion

2008-08-26 Thread Norberto Meijome
On Tue, 26 Aug 2008 15:15:21 +0300 Aleksey Gogolev <[EMAIL PROTECTED]> wrote: > > Hello. > > I'm new to solr and I need to make a search suggest (like google > suggestions). > Hi Aleksey, please search the archives of this list for subjects containing 'autocomplete' or 'auto-suggest'. that sho

Re: Question about search suggestion

2008-08-26 Thread Shalin Shekhar Mangar
Hi Aleksey, Welcome to Solr! You should append a wildcard at the end e.g. search like "samsu*" which should match "samsung". On Tue, Aug 26, 2008 at 5:45 PM, Aleksey Gogolev <[EMAIL PROTECTED]> wrote: > > Hello. > > I'm new to solr and I need to make a search suggest (like google > suggestions)

Question about search suggestion

2008-08-26 Thread Aleksey Gogolev
Hello. I'm new to solr and I need to make a search suggest (like google suggestions). In first approach I decided to make it in this way: 1. Script make a query to solr using words that were typed by user. 2. Then script analyse docs (which solr return) and build a suggestions. But I confronte