to OR or not

2006-03-27 Thread Amol Bhutada
Hi everybody, I am using lucene in almost every web application I am working on. It's simply a great software. I have developed an advanced search with Lucene 1.4. Now I am looking for developing a fuzzy search i.e get one search string from the user and search across all fields of member docume

closing searcher

2006-03-15 Thread Amol Bhutada
Hi, I am using lucene in a j2ee based webapplication. I have created a one instance of reader and searcher object and trying to use that for all searches from different users without recreating/refreshing reader & searcher objects. Is this fine? I am asking this because I am reading http://www.

Re: Reindexing

2006-02-07 Thread Amol Bhutada
Hi Revati, If I am not wrong you must be using hibernate intercepter to get the evens on value objects. You will get all lifecycle event in the class so you should handle lucene index addition/updation/deletion there. But I had faced locking problem with hibernate as multiple writers get opened

indexreader refresh

2006-01-04 Thread Amol Bhutada
If I have a reader and searcher on a indexdata folder and another indexwriter writing documents to the same indexdata folder, do I need to close existing reader and searcher and create new so that newly indexed data comes into search effect? I have checked through google, got some pointers but