RES: Index problem

2002-04-08 Thread Flavio Arruda
>-Mensagem original- >De: Nader S. Henein [mailto:[EMAIL PROTECTED]] >Enviada em: segunda-feira, 8 de abril de 2002 12:16 >Para: Lucene Users List >Cc: Flavio Arruda >Assunto: RE: Index problem > > >I'm currently working on indexing 200 000 documents with >index updates every half hour on

RE: Index problem

2002-04-08 Thread Nader S. Henein
I'm currently working on indexing 200 000 documents with index updates every half hour on three separate webservers. So you can see my ordeal I have to update the index ( delete and add) on three separate machines, how many files are you indexing, the first issue I faced was the "Too Many files o

Index problem

2002-04-08 Thread Flavio Arruda
Hi everybody, All documents of my application (indexed by Lucene) came from a Web Form which the applicationĀ“s Administrator can change/remove/add (fields) regularly. Researching LuceneĀ“s FAQs I got that the only way to alter a indexed document (adding index, deleting index, modify fields) is

FW: "Match All Words" Query

2002-04-08 Thread Aruna Raghavan
Also used the following without a problem: bool_query.add(q,true,false); -Original Message- From: Aruna Raghavan [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 8:47 AM To: 'Lucene Users List' Subject: RE: "Match All Words" Query Hi, I haven't tried two levels of boolean quer

RE: Newbie Questions

2002-04-08 Thread Armbrust, Daniel C.
The way that we have done this (and this isn't necessarily the best way, it was just the solution we came up with) is that we store all dates and numbers as strings, but formatted in such a way that when they are alphabetized, they will be in the right order. The Lucene Date Filtering mechanism w

RE: "Match All Words" Query

2002-04-08 Thread Aruna Raghavan
Hi, I haven't tried two levels of boolean queries but I did use the following and it works fine for me. BooleanQuery bool_query = new BooleanQuery(); for each field { Query q = QueryParser.parse(term,field,analyzer); bool_query.add(q,false,false); } searcher.search( bool_query); A