Question

2006-03-07 Thread Thomas Papke
Hello, anyone implement the "Google Suggest" Feature using Lucene? The Frontend is clear - but i need a very fast way to retrieve matching terms. For example: The user typed "Ab" and i want to give him a list of 10 possible words in term "name" starting with "Ab*". So i don't need the hole do

Re: Question to Lucene Index

2006-02-27 Thread Thomas Papke
Thank you for all your good answers The restriction i want to search with looks somethinks like this: I want to do some searching for A in diffenerent Fields and i want to prohibite some user/usergroups specific field values. I am right to do it in this way: BooleanQuery q1 = new BooleanQuery

Re: Question to Lucene Index

2006-02-24 Thread Thomas Papke
What is the disadvantage of doing that? Michael D. Curtin schrieb: Thomas Papke wrote: i am a "newby" in usage of Apache Lucene. If have a relativly big database indexed by lucene (about 300MB File). Up to now - all users could search over the hole index. How to restrict the re

Question to Lucene Index

2006-02-24 Thread Thomas Papke
Hello there, i am a "newby" in usage of Apache Lucene. If have a relativly big database indexed by lucene (about 300MB File). Up to now - all users could search over the hole index. How to restrict the resultset? I have tried it with adding some BooleanQuerys to restrict entries. But with thi