Re: SOLR-1316 How To Implement this autosuggest component ???

2010-04-01 Thread stockii
hello. i understand not really much about this conversation :D but i think you can help me. i got an idea for my suggestions. make it sense to group my suggestions with patch-236 ? i test it. and it worked not complete well =( my problem ist that i have too many productnames with too long nam

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-31 Thread Andrzej Bialecki
On 2010-03-31 06:14, Andy wrote: --- On Tue, 3/30/10, Andrzej Bialecki wrote: From: Andrzej Bialecki Subject: Re: SOLR-1316 How To Implement this autosuggest component ??? To: solr-user@lucene.apache.org Date: Tuesday, March 30, 2010, 9:59 AM On 2010-03-30 15:42, Robert Muir wrote: On Mon

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-30 Thread Andy
--- On Tue, 3/30/10, Andrzej Bialecki wrote: > From: Andrzej Bialecki > Subject: Re: SOLR-1316 How To Implement this autosuggest component ??? > To: solr-user@lucene.apache.org > Date: Tuesday, March 30, 2010, 9:59 AM > On 2010-03-30 15:42, Robert Muir > wrote: > > On

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-30 Thread Robert Muir
On Tue, Mar 30, 2010 at 9:59 AM, Andrzej Bialecki wrote: > > The problem is a bit more complicated. There are two issues: > Somehow I guessed this was the case, as admittedly I dont understand what it should do! > > * simple term-level completion often produces wrong results for multi-term > q

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-30 Thread Andrzej Bialecki
On 2010-03-30 15:42, Robert Muir wrote: On Mon, Mar 29, 2010 at 11:34 PM, Andy wrote: Reading through this thread and SOLR-1316, there seems to be a lot of different ways to implement auto-complete in Solr. I've seen the mentions of: EdgeNGrams TermsComponent Faceting TST Patricia Tries Radix

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-30 Thread Robert Muir
On Mon, Mar 29, 2010 at 11:34 PM, Andy wrote: > Reading through this thread and SOLR-1316, there seems to be a lot of > different ways to implement auto-complete in Solr. I've seen the mentions > of: > > EdgeNGrams > TermsComponent > Faceting > TST > Patricia Tries > RadixTree > DAWG > > Another

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-29 Thread Andrzej Bialecki
On 2010-03-30 05:34, Andy wrote: Reading through this thread and SOLR-1316, there seems to be a lot of different ways to implement auto-complete in Solr. I've seen the mentions of: EdgeNGrams TermsComponent Faceting TST Patricia Tries RadixTree DAWG Which algorthm does SOLR-1316 implement? TST

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-29 Thread Andy
thers mentioned in the comments on SOLR-1316, such as Patricia Tries, RadixTree, DAWG. Are those implemented too? Among all those methods is there a "recommended" one? What are the pros & cons? Thanks. --- On Mon, 3/29/10, Lance Norskog wrote: From: Lance Norskog Subject: Re: SOLR-13

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-29 Thread Lance Norskog
SOLR-1316 uses a much faster data structure (Ternary Search Tree), not a Lucene index. Using Ngram-based tools like the spellchecker, or your implementation is inherently slower. Netflix, for example, uses a dedicated TST server farm (their own implementation of TST) to do auto-complete. On Fri,

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-26 Thread stockii
hey thx. i think the component runs so far, but i don´t see what it brings me. my first autocompletion-solution was with EdgeNGram ... and its exactly the same result ... can anyone, plese show me the advantages of the Issue-1316 ?! -- View this message in context: http://n3.nabble.com/SOL

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-24 Thread Alexey Serba
lish >>>>>>     >>>>>>   >>>>>> >>>>>> >>>>>> --> SCHWERWIEGEND: org.apache.solr.common.SolrException: Error loading >>>>>> class >>>>>> 'o

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-24 Thread stocki
Suggester' >>>>> >>>>> >>>>> why is it so ??  i think no one has so many trouble to run a patch >>>>> like >>>>> me =( :D >>>>> >>>>> >>>>> Andrz

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-24 Thread stocki
j Bialecki wrote: >>>>> >>>>> On 2010-03-19 13:03, stocki wrote: >>>>>> >>>>>> hello.. >>>>>> >>>>>> i try to implement autosuggest component from these link: >>>>>> http://issues.apa

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-23 Thread Lance Norskog
.apache.org/jira/browse/SOLR-1316 >>>>> >>>>> but i have no idea how to do this !?? can anyone get me some tipps ? >>>> >>>> Please follow the instructions outlined in the JIRA issue, in the >>>> comment that shows fragments of XML config files. >>>>

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-23 Thread stocki
o idea how to do this !?? can anyone get me some tipps ? >>> >>> Please follow the instructions outlined in the JIRA issue, in the >>> comment that shows fragments of XML config files. >>> >>> >>> -- >>> Best regards, >>> Andrzej Bi

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-23 Thread Alexey Serba
____ >> [__ || __|__/|__||\/|  Information Retrieval, Semantic Web >> ___|||__||  \|  ||  |  Embedded Unix, System Integration >> http://www.sigram.com  Contact: info at sigram dot com >> >> >> > > -- > View this message in context: > http://old.nabble.com/SOLR-1316-How-To-Implement-this-autosuggest-component-tp27950949p27990809.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-23 Thread stocki
can nobody help me ? =( stocki wrote: > > i patch an nightly build from solr. > patch runs, classes are in the correct folder, but when i replace > spellcheck with this spellchecl like in the comments, solr cannot find the > classes =( > > > > suggest >name="classname">org

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-22 Thread stocki
| __|__/|__||\/| Information Retrieval, Semantic Web > ___|||__|| \| || | Embedded Unix, System Integration > http://www.sigram.com Contact: info at sigram dot com > > > -- View this message in context: http://old.nabble.com/SOLR-1316-How-To-Implement-this-autosuggest-component-tp27950949p27990809.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-20 Thread stocki
ki wrote: > >> >> hello.. >> >> i try to implement autosuggest component from these link: >> http://issues.apache.org/jira/browse/SOLR-1316 >> >> but i have no idea how to do this !?? can anyone get me some tipps ? >> -- >> View this me

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-19 Thread Andrzej Bialecki
On 2010-03-19 13:03, stocki wrote: hello.. i try to implement autosuggest component from these link: http://issues.apache.org/jira/browse/SOLR-1316 but i have no idea how to do this !?? can anyone get me some tipps ? Please follow the instructions outlined in the JIRA issue, in the comment

Re: SOLR-1316 How To Implement this autosuggest component ???

2010-03-19 Thread Erick Erickson
> View this message in context: > http://old.nabble.com/SOLR-1316-How-To-Implement-this-autosuggest-component-tp27950949p27950949.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

SOLR-1316 How To Implement this autosuggest component ???

2010-03-19 Thread stocki
hello.. i try to implement autosuggest component from these link: http://issues.apache.org/jira/browse/SOLR-1316 but i have no idea how to do this !?? can anyone get me some tipps ? -- View this message in context: http://old.nabble.com/SOLR-1316-How-To-Implement-this-autosuggest-component