Re: wizard for search in Lucene

2008-10-31 Thread Albert Juhe
Hi, This is my first version, it isn't fast, because I want to get this information without modifying index. Now I'm working to improve it (including freeling). public String docsTerme(IndexReader reader, String terme) { String resultat = ""; TermPositions tP; ArrayList a

Re: wizard for search in Lucene

2008-10-10 Thread Aleksander M. Stensby
From what I can understand, you want to insert the word "history" and then get proposed "related" terms in combination with your input query. In essense this would be to do a "look-up" on top-terms in the subset of documents matching the initial query "history". Exactly how you could do this

Re: wizard for search in Lucene

2008-10-09 Thread Asbjørn A . Fellinghaug
Albert Juhe: > > Hi, > > I want to make a wizard that can help to find n-grams terms. > For example: > If i want to search History, after write it the system propose you the > following searches: > history europe > history spain > history . > Consulting the terms indexed. > > Does it exits i