Re: Search while typing (incremental search)

2021-10-06 Thread Michael Wechner
Thanks very much for your feedback! I will try it :-) As I wrote I would like to add a summary to the Lucene FAQ (https://cwiki.apache.org/confluence/display/lucene/lucenefaq) Would the following questions make sense? - "Does Lucene support incremental search?" - "Does Lucene supp

Re: Search while typing (incremental search)

2021-10-06 Thread Robert Muir
TLDR: use the lucene suggest/ package. Start with building suggester from your query logs (either a file or index them). These have a lot of flexibility about how the matches happen, for example pure prefixes, edit distance typos, infix matching, analysis chain, even now Japanese input-method integ

Search while typing (incremental search)

2021-10-06 Thread Michael Wechner
Hi I am trying to implement a search with Lucene similar to what for example various "Note Apps" (e.g. "Google Keep" or "Samsung Notes") are offering, that with every new letter typed a new search is being executed. For example when I type "tes", then all documents are being returned contain

org.apache.lucene.index.memory.MemoryIndex

2021-10-06 Thread Baris Kazar
Hi,- Is there a project within Apache Lucene to extend this class to allow multiple results? Best regards