Re: Suggestive Search

2009-04-09 Thread Konstantyn Smirnov
ords, Person ~ 1.6 mio - Project Lead http://www.poiradar.ru www.poiradar.ru http://www.poiradar.com.ua www.poiradar.com.ua http://www.poiradar.com www.poiradar.com http://www.poiradar.de www.poiradar.de -- View this message in context: http://www.nabble.com/Suggestive-Search-tp22950433p2

Re: Suggestive Search

2009-04-09 Thread 王巍巍
In my project, i stored the user input keyword in the database, as a result, I build a index from the database and use it to do suggestive search. The code example is googled and I changed the analyzer and query function. I attach the code but you have to modify the code to make it run. For

Re: Suggestive Search

2009-04-08 Thread 王巍巍
pr 2009 kl. 20.50 skrev Matt Schraeder: > > > Corerct me if I'm wrong, but I don't think n-grams is really what I'm >> looking for here. I'm not looking for a spellchecker or phrase checker >> style suggestive search, but only based on the exact phrases t

Re: Suggestive Search

2009-04-08 Thread Karl Wettin
refere the trie-pattern though. Just rememberd there is an old one in LUCENE-625. karl 8 apr 2009 kl. 20.50 skrev Matt Schraeder: Corerct me if I'm wrong, but I don't think n-grams is really what I'm looking for here. I'm not looking for a spellchecker or phrase c

Re: Suggestive Search

2009-04-08 Thread Gary Moore
for here. I'm not looking for a spellchecker or phrase checker style suggestive search, but only based on the exact phrases the user is currently typing. Since Lucene uses term-based searching, I'm not sure how to have it search on portions of a full phrase. Using a standard lucene sea

Re: Suggestive Search

2009-04-08 Thread Matt Schraeder
Corerct me if I'm wrong, but I don't think n-grams is really what I'm looking for here. I'm not looking for a spellchecker or phrase checker style suggestive search, but only based on the exact phrases the user is currently typing. Since Lucene uses term-based searching, I&#x

Re: Suggestive Search

2009-04-08 Thread Karl Wettin
skrev Matt Schraeder: I want to add a suggestive search similar to google's to autocomplete search phrases as the user types. It doesn't have to be very elaborate and for the most part will just involve searching single fields. How can I perform a search to be able to fill in au

Suggestive Search

2009-04-08 Thread Matt Schraeder
I want to add a suggestive search similar to google's to autocomplete search phrases as the user types. It doesn't have to be very elaborate and for the most part will just involve searching single fields. How can I perform a search to be able to fill in autocomplete text? For inst