Re: Lucene Suggest Phrase

2014-04-01 Thread Jose Carlos Canova
I've "remember now" name is /liblevenshtein works with Node.js if i am not wrong. "Lucene suggest" works on same algorithm. Which in practice is enough for words with same "character sequence". On Tue, Apr 1, 2014 at 1:30 PM, Jose Carlos Canova < jose

Re: Lucene Suggest Phrase

2014-04-01 Thread Jose Carlos Canova
Hi, I haven't reach this point but it seems that Lucene has a "suggester" project that works over "Lucene's Index" it self which simplifies terms (for query suggestion) collecting. I saw something on GitHub to be used with javascript but i cant remember now the name of the project. att. On Tue

Lucene Suggest Phrase

2014-04-01 Thread Massimo Ferrario
Hi all, I'm looking a solution  for a multi-word suggester. Reading Changing Bits, Mike McCandless's Blog, I saw some solutions that seem working for a  restricted number of input. I'm searching a suggester that works as DirectSpellckecker o SpellChecker but with multi-word. Any ideas? thanks,

Re: lucene suggest

2007-08-22 Thread Karl Wettin
21 aug 2007 kl. 13.10 skrev Jens Grivolla: On 8/21/07, Heba Farouk <[EMAIL PROTECTED]> wrote: the documents are not duplicated, i mean the hits (assume that 2 documents have the same subject but with different authors, so if i'm searching the subject, the returned hits will have duplicates

Re: lucene suggest

2007-08-21 Thread Jens Grivolla
On 8/21/07, Heba Farouk <[EMAIL PROTECTED]> wrote: > the documents are not duplicated, i mean the hits (assume that 2 documents > have the same subject but with different authors, so if i'm searching the > subject, the returned hits will have duplicates ) > i was asking if i can remove duplicates

RE: lucene suggest

2007-08-21 Thread Ard Schrijvers
:S If you have two hits, you have it two times in your index, simple as that. So, you have two lucene Documents with the same subject, but with different authors, and your search for subject, well, obviously you get 2 hits. Check out luke, it will help you understand your index. Furthermore, y

RE: lucene suggest

2007-08-21 Thread Heba Farouk
the documents are not duplicated, i mean the hits (assume that 2 documents have the same subject but with different authors, so if i'm searching the subject, the returned hits will have duplicates ) i was asking if i can remove duplicates from the hits?? thanks in advance Ard Schrijvers <[EMAIL

RE: lucene suggest

2007-08-21 Thread Chhabra, Kapil
riginal Message- From: Heba Farouk [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 3:30 PM To: Lucene mailing list Subject: lucene suggest Hello i would like to implement a suggest implementation (like google suggest) using lucene. i actually tried using lucene and it was successfull but

RE: lucene suggest

2007-08-21 Thread Ard Schrijvers
Hello Heba, you need some lucene field that serves as an identifier for your documents that are indexed. Then, when re-indexing some documents, you can first use the identifier to delete the old indexed documents. You have to take care of this yourself. Regards Ard > > Hello > i would like

lucene suggest

2007-08-21 Thread Heba Farouk
Hello i would like to implement a suggest implementation (like google suggest) using lucene. i actually tried using lucene and it was successfull but i was stuck in some point which is returning a list of results to the user that have no duplicates. my question is: is there any way i can remove

Re: AW: Lucene Suggest ?

2006-09-15 Thread karl wettin
On Fri, 2006-09-15 at 15:31 +0200, Mark Müller wrote: > I guess terms will only be took into the corpus when the search found > results at least once for that term (and removed if no more results were > found). > > Persisting the corpus has to be done, but should be no problem. I use ObjectIn&Out

Re: Lucene Suggest ?

2006-09-15 Thread Bill Taylor
Depending on the size of your index, you might want to put it in the downloaded page. I have a small index of maybe 1,500 words so I have the word list in the page. this is simpler than ajax, but will not work for big indexes, of course. On Sep 15, 2006, at 8:02 AM, Mark Müller wrote: Hi a

AW: Lucene Suggest ?

2006-09-15 Thread Mark Müller
ettin [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 15. September 2006 14:09 An: java-user@lucene.apache.org Betreff: Re: Lucene Suggest ? On Fri, 2006-09-15 at 14:02 +0200, Mark Müller wrote: > Hi all, > I like to know if it is possible to let make Lucene Suggestions while > the user types

Re: Lucene Suggest ?

2006-09-15 Thread Ioan Cocan
We've done something similar at http://www.123dictionar.ro. As you type, the word is sent to the server using AJAX and if an exact match is not found, a Lucene index is searched using a FuzzyQuery search. Counts are precomputed, as data is not changing. Regards, Ioan Mark Müller wrote: Hi al

Re: Lucene Suggest ?

2006-09-15 Thread karl wettin
On Fri, 2006-09-15 at 14:02 +0200, Mark Müller wrote: > Hi all, > I like to know if it is possible to let make Lucene Suggestions while the > user types in the search query. > > Like in Google Suggest: http://www.google.com/webhp?complete=1&hl=en > > I just need to send with AJAX the part of the

Lucene Suggest ?

2006-09-15 Thread Mark Müller
Hi all, I like to know if it is possible to let make Lucene Suggestions while the user types in the search query. Like in Google Suggest: http://www.google.com/webhp?complete=1&hl=en I just need to send with AJAX the part of the word the user already typed and get back the list of matching terms.